ParameterDefinition constructor

ParameterDefinition({
  1. required String name,
  2. required List<String> referencedByResources,
  3. String? allowedPattern,
  4. List<String>? allowedValues,
  5. String? constraintDescription,
  6. String? defaultValue,
  7. String? description,
  8. int? maxLength,
  9. int? maxValue,
  10. int? minLength,
  11. int? minValue,
  12. bool? noEcho,
  13. String? type,
})

Implementation

ParameterDefinition({
  required this.name,
  required this.referencedByResources,
  this.allowedPattern,
  this.allowedValues,
  this.constraintDescription,
  this.defaultValue,
  this.description,
  this.maxLength,
  this.maxValue,
  this.minLength,
  this.minValue,
  this.noEcho,
  this.type,
});