Parameter constructor

Parameter({
  1. String? allowedValues,
  2. ChangeType? changeType,
  3. String? dataType,
  4. String? description,
  5. IsModifiable? isModifiable,
  6. List<NodeTypeSpecificValue>? nodeTypeSpecificValues,
  7. String? parameterName,
  8. ParameterType? parameterType,
  9. String? parameterValue,
  10. String? source,
})

Implementation

Parameter({
  this.allowedValues,
  this.changeType,
  this.dataType,
  this.description,
  this.isModifiable,
  this.nodeTypeSpecificValues,
  this.parameterName,
  this.parameterType,
  this.parameterValue,
  this.source,
});