DeviceModel constructor

const DeviceModel({
  1. required String id,
  2. bool status = false,
  3. String? description,
})

Implementation

const DeviceModel({
  required this.id,
  this.status = false,
  this.description,
});