SettingOption constructor

SettingOption({
  1. String? id,
  2. String? label,
  3. String? description,
  4. String? type,
  5. String? settingOptionDefault,
  6. String? tip,
  7. String? value,
  8. Links? links,
  9. Map<String, String>? options,
})

Implementation

SettingOption({
  this.id,
  this.label,
  this.description,
  this.type,
  this.settingOptionDefault,
  this.tip,
  this.value,
  this.links,
  this.options,
});