DartBlockFunction constructor

DartBlockFunction(
  1. String name,
  2. DartBlockDataType? returnType,
  3. List<DartBlockVariableDefinition> parameters,
  4. List<Statement> statements,
)

Implementation

DartBlockFunction(
  this.name,
  this.returnType,
  this.parameters,
  this.statements,
);