PluginUserConfigOption constructor

const PluginUserConfigOption({
  1. required String type,
  2. required String title,
  3. required String description,
  4. bool? required,
  5. dynamic defaultValue,
  6. bool? multiple,
  7. bool? sensitive,
  8. num? min,
  9. num? max,
})

Implementation

const PluginUserConfigOption({
  required this.type,
  required this.title,
  required this.description,
  this.required,
  this.defaultValue,
  this.multiple,
  this.sensitive,
  this.min,
  this.max,
});