Parameter constructor

Parameter({
  1. String? allowedValues,
  2. ParameterApplyType? applyType,
  3. String? dataType,
  4. String? description,
  5. bool? isModifiable,
  6. String? minimumEngineVersion,
  7. String? parameterName,
  8. String? parameterValue,
  9. String? source,
})

Implementation

Parameter({
  this.allowedValues,
  this.applyType,
  this.dataType,
  this.description,
  this.isModifiable,
  this.minimumEngineVersion,
  this.parameterName,
  this.parameterValue,
  this.source,
});