ParameterMetadata constructor

ParameterMetadata({
  1. Map<String, String>? customMetadata,
  2. String? helpText,
  3. bool? isOptional,
  4. String? label,
  5. String? name,
  6. String? paramType,
  7. List<String>? regexes,
})

Implementation

ParameterMetadata({
  this.customMetadata,
  this.helpText,
  this.isOptional,
  this.label,
  this.name,
  this.paramType,
  this.regexes,
});