SensorDataModel constructor

SensorDataModel({
  1. required String sensorId,
  2. required String name,
  3. required List<MultilingualValues> description,
  4. required String minValue,
  5. required String maxValue,
  6. required String valueType,
  7. required String flag,
  8. required String threatsImpact,
  9. required String urgency,
})

Implementation

SensorDataModel({
  required this.sensorId,
  required this.name,
  required this.description,
  required this.minValue,
  required this.maxValue,
  required this.valueType,
  required this.flag,
  required this.threatsImpact,
  required this.urgency,
});