Thing constructor

Thing({
  1. String? thingArn,
  2. String? thingName,
})

Implementation

Thing({
  this.thingArn,
  this.thingName,
});