Device constructor

Device({
  1. required String deviceName,
  2. String? description,
  3. String? iotThingName,
})

Implementation

Device({
  required this.deviceName,
  this.description,
  this.iotThingName,
});