DeviceType constructor

DeviceType({
  1. List<AttributeType>? deviceAttributes,
  2. DateTime? deviceCreateDate,
  3. String? deviceKey,
  4. DateTime? deviceLastAuthenticatedDate,
  5. DateTime? deviceLastModifiedDate,
})

Implementation

DeviceType({
  this.deviceAttributes,
  this.deviceCreateDate,
  this.deviceKey,
  this.deviceLastAuthenticatedDate,
  this.deviceLastModifiedDate,
});