OptionSetting constructor

OptionSetting({
  1. String? allowedValues,
  2. String? applyType,
  3. String? dataType,
  4. String? defaultValue,
  5. String? description,
  6. bool? isCollection,
  7. bool? isModifiable,
  8. String? name,
  9. String? value,
})

Implementation

OptionSetting({
  this.allowedValues,
  this.applyType,
  this.dataType,
  this.defaultValue,
  this.description,
  this.isCollection,
  this.isModifiable,
  this.name,
  this.value,
});