ParamDecl constructor
ParamDecl(})
Implementation
ParamDecl(
IdentifierExpr id, {
TypeExpr? declType,
ASTNode? initializer,
this.isVariadic = false,
this.isOptional = false,
this.isNamed = false,
this.isInitialization = false,
super.source,
super.line = 0,
super.column = 0,
super.offset = 0,
super.length = 0,
}) : super(id,
declType: declType,
initializer: initializer,
isMutable: true,
isStatement: false);