Device constructor

Device({
  1. required String certificateArn,
  2. required String id,
  3. required String thingArn,
  4. bool? syncShadow,
})

Implementation

Device({
  required this.certificateArn,
  required this.id,
  required this.thingArn,
  this.syncShadow,
});