SFunctionExpression constructor

SFunctionExpression({
  1. required int offset,
  2. required int length,
  3. STypeParameterList? typeParameters,
  4. SFormalParameterList? parameters,
  5. SFunctionBody? body,
})

Implementation

SFunctionExpression({
  required this.offset,
  required this.length,
  this.typeParameters,
  this.parameters,
  this.body,
});