DefaultDeviceRegistration constructor

DefaultDeviceRegistration({
  1. String? deviceId,
  2. String? deviceDisplayName,
  3. DateTime? registrationCreatedOn,
})

Create a new DefaultDeviceRegistration

  • deviceId - a unique id for this device. If not specified, a unique id will be generated.
  • deviceDisplayName - An optional concise textual representation for display purposes describing the key specifications of the device.
  • registrationCreatedOn - the timestamp in zulu when this registration was created. If not specified, the time of creation will be used.

Implementation

DefaultDeviceRegistration({
  super.deviceId,
  super.deviceDisplayName,
  super.registrationCreatedOn,
});