Device constructor

Device({
  1. required String id,
  2. required String name,
  3. required bool isActive,
  4. required bool isRestricted,
  5. required String type,
  6. required int volumePercent,
})

Implementation

Device({
  required this.id,
  required this.name,
  required this.isActive,
  required this.isRestricted,
  required this.type,
  required this.volumePercent,
});