Parameter constructor

Parameter(
  1. {InstanceRef? parameterType,
  2. bool? fixed,
  3. String? name,
  4. bool? required}
)

Implementation

Parameter({
  this.parameterType,
  this.fixed,
  this.name,
  this.required,
});