Parameter constructor

Parameter(
  1. VariableName name, {
  2. TypeName type = TypeName.empty,
  3. bool withThis = false,
  4. Code? defaultValue,
})

Implementation

Parameter(
  this.name, {
  this.type = TypeName.empty,
  this.withThis = false,
  this.defaultValue,
});