DartWriter
DartWriter
provides API to generate Dart source code. It can make your job easier while developing flutter/dart tools. You can also generate Flutter UI code.
Hello World Example
Generated as below:
Flutter Stateless Widget Example
Input
Code:
Generated ui code:
Installation
In the pubspec.yaml
of your Flutter / Dart project, add the following dependency:
In your library file add the following import:
API Documentation
Conditions
Generated code:
Loops
Generated code:
Statements
Generated code:
OOP Concepts
Class
Parameter | Description | Output |
---|---|---|
String className | Class Name | class Bird |
bool isAbstract? | Generating abstract class if value is true | abstract class Animal or class Animal |
List<Constructors>? | more than one constructor can be defined | Singleton._init() , Singleton({this.a}) : super(a) |
String? baseClass | extends to base class | class Bird extends Animal |
List<String>? mixins | indicates the use of mixins | class Bird with Feather, Walk |
List<String>? interfaces | implements interface | class Bird implements Flyable, Crowable |
List<Attribute>? attributes; | attributes of class | final String name; |
List<IExpression>? methods; | all methods of class such as Method, Getters, Settters | final String name; |
Constructor
Parameter | Description | Output |
---|---|---|
String className | Class Name | class Singleton |
String consturctorName? | if value is null Default constructor. if not value, named constructor. | Singleton._init() , Singleton({this.a}) |
Parameter? param | Constructor parameters | Singleton({required this.a}) , Singleton(this.a, {this.b}) |
String? superArgument | call constructor of base class | Singleton(this.a) : super(a) |
String? modifier | modifier of constructor such as factory |
factory Singleton() |
Attribute
Parameter | Description | Output |
---|---|---|
String name | Attribute Name | name |
String type | Attribute type | String name |
String? modifiers | Attribute modifiers | final String name |
String? value | initialize value to attribute | final String name = 'Ahmet' |
Methods
Method
Parameter | Description | Output |
---|---|---|
String name | Method Name | walk |
String returnType? | Return type | void walk |
Parameter? param | Method parameters | void walk({required int step}) |
bool? isAsync | is async method? | void walk({required int step}) async {} |
String? modifier | Modifier of method such as static |
static void walk |
List<IExpression>? statements | body of method. | Code here... |
Getter
Parameter | Description | Output |
---|---|---|
String name | Getter Name | get walk |
String returnType? | Return type | void get walk |
String? modifier | Modifier of method such as static |
static void get name |
List<IExpression>? statements | body of method. | Code here... |
Setter
Parameter | Description | Output |
---|---|---|
String name | Getter Name | set name |
String param? | Return type | set name(String name) |
List<IExpression>? statements | body of method. | Code here... |
Example Class Code:
Generated code:
Interface
Parameter | Description | Output |
---|---|---|
String name | Interface Name | interface Flyable |
String? baseClass | extends class | interface Flyable extends Breathable |
List<IExpression>? prototypes | abstract methods of interface | void doFly(); |
Example Interface
Generated code:
Other
Expression | Example Code | Output |
---|---|---|
Annotation | Annotation('override') | @override |
Import | Import('package:dart_writer/dart_writer.dart', as: 'writer') | import 'package:dart_writer/dart_writer.dart' as writer; |
Enum | Enum('Roles', enums: ['USER', 'ADMIN', 'DEVELOPER']) | enum Roles { USER, ADMIN, DEVELOPER } |
Paramter | Parameter([ParameterItem('String name', isNamed: true, isRequired: true)]) | {required String name} |
Argument | Argument([ArgumentItem("'Star'", name:'surname']) | surname: 'Star' |
RawCode | RawCode('var name = user?.name ?? "'ahmet'"') | [Output]: var name = user?.name ?? 'ahmet' |
TASK LIST
- [ ] Unit Tests