ClassStmt constructor
ClassStmt(
- String name,
- Expression? parent,
- List<
ClassField> fields, - List<
ClassGetter> getters, - Constructor? constructorMethod,
- List<
ClassMethod> methods, { - List<
TypeParameter> typeParameters = const [],
Implementation
ClassStmt(
this.name,
this.parent,
this.fields,
this.getters,
this.constructorMethod,
this.methods, {
this.typeParameters = const [],
});