ThingDocument constructor

ThingDocument({
  1. Map<String, String>? attributes,
  2. ThingConnectivity? connectivity,
  3. String? shadow,
  4. List<String>? thingGroupNames,
  5. String? thingId,
  6. String? thingName,
  7. String? thingTypeName,
})

Implementation

ThingDocument({
  this.attributes,
  this.connectivity,
  this.shadow,
  this.thingGroupNames,
  this.thingId,
  this.thingName,
  this.thingTypeName,
});