ConstructorDeclaration constructor

ConstructorDeclaration(
  1. FormalParameterList? parameters,
  2. List<AstRuntimeNode>? initializerList,
  3. BlockFunctionBody? body,
  4. AstRuntimeNode? returnType,
)

Implementation

ConstructorDeclaration(
  this.parameters,
  this.initializerList,
  this.body,
  this.returnType,
);