DeclareFunctionStmt constructor
DeclareFunctionStmt(
- String name,
- List<
FnParam> params, - List<
Statement> statements, { - List<
Expression> annotations = const [], - OutputType? type,
- List<
TypeParameter> typeParameters = const [], - bool isGetter = false,
Implementation
DeclareFunctionStmt(
this.name,
this.params,
this.statements, {
this.annotations = const [],
this.type,
this.typeParameters = const [],
this.isGetter = false,
});