ParamTypeExpr constructor

ParamTypeExpr(
  1. TypeExpr declType, {
  2. IdentifierExpr? id,
  3. bool isOptionalPositional = false,
  4. bool isVariadic = false,
  5. HTSource? source,
  6. int line = 0,
  7. int column = 0,
  8. int offset = 0,
  9. int length = 0,
})

Implementation

ParamTypeExpr(
  this.declType, {
  this.id,
  this.isOptionalPositional = false,
  this.isVariadic = false,
  super.source,
  super.line = 0,
  super.column = 0,
  super.offset = 0,
  super.length = 0,
}) : super(Semantic.paramTypeExpr);