MBVariablePreset constructor

MBVariablePreset({
  1. required String display,
  2. required String description,
  3. required String code,
  4. required Color color,
  5. required String icon,
  6. MBRange? range,
  7. required String type,
  8. required String unit,
})

Implementation

MBVariablePreset({
  required this.display,
  required this.description,
  required this.code,
  required this.color,
  required this.icon,
  this.range,
  required this.type,
  required this.unit
});