ConfigurationOptionDescription constructor

ConfigurationOptionDescription({
  1. String? changeSeverity,
  2. String? defaultValue,
  3. int? maxLength,
  4. int? maxValue,
  5. int? minValue,
  6. String? name,
  7. String? namespace,
  8. OptionRestrictionRegex? regex,
  9. bool? userDefined,
  10. List<String>? valueOptions,
  11. ConfigurationOptionValueType? valueType,
})

Implementation

ConfigurationOptionDescription({
  this.changeSeverity,
  this.defaultValue,
  this.maxLength,
  this.maxValue,
  this.minValue,
  this.name,
  this.namespace,
  this.regex,
  this.userDefined,
  this.valueOptions,
  this.valueType,
});