AstLambda constructor

AstLambda(
  1. List<Variable> params,
  2. AstType returnType, {
  3. InjectCodeUnit? injectedOCCodes,
  4. bool declaration = false,
  5. int depth = 0,
  6. bool maybeNull = false,
})

Implementation

AstLambda(this.params, this.returnType,
    {this.injectedOCCodes,
    this.declaration = false,
    this.depth = 0,
    bool maybeNull = false})
    : super(maybeNull, []);