Parameter constructor

Parameter({
  1. String? arn,
  2. String? dataType,
  3. DateTime? lastModifiedDate,
  4. String? name,
  5. String? selector,
  6. String? sourceResult,
  7. ParameterType? type,
  8. String? value,
  9. int? version,
})

Implementation

Parameter({
  this.arn,
  this.dataType,
  this.lastModifiedDate,
  this.name,
  this.selector,
  this.sourceResult,
  this.type,
  this.value,
  this.version,
});