IoT constructor

IoT({
  1. String? name,
  2. String? token,
  3. String? iotLicenseType,
  4. String? location,
  5. String? protocol,
  6. bool? status,
  7. String? lastOnline,
})

Returns a new IoT instance.

Implementation

IoT({
  this.name,
  this.token,
  this.iotLicenseType,
  this.location,
  this.protocol,
  this.status,
  this.lastOnline,
});