Input$PairDeviceWithExternalIdInput constructor

Input$PairDeviceWithExternalIdInput({
  1. required String deviceId,
  2. String? externalId,
})

Implementation

factory Input$PairDeviceWithExternalIdInput({
  required String deviceId,
  String? externalId,
}) => Input$PairDeviceWithExternalIdInput._({
  r'deviceId': deviceId,
  if (externalId != null) r'externalId': externalId,
});