createRegistration method

  1. @override
DefaultDeviceRegistration createRegistration({
  1. String? deviceId,
  2. String? deviceDisplayName,
})
override

Create a DeviceRegistration which can be used to configure this device for deployment.

Override this method to configure device-specific registration options, if any.

Implementation

@override
DefaultDeviceRegistration createRegistration({
  String? deviceId,
  String? deviceDisplayName,
}) =>
    DefaultDeviceRegistration(
        deviceId: deviceId, deviceDisplayName: deviceDisplayName);