authorizationStateWaitOtherDeviceConfirmation property

AuthorizationStateWaitOtherDeviceConfirmation? authorizationStateWaitOtherDeviceConfirmation

The user needs to confirm authorization on another logged in device by scanning a QR code with the provided link

Implementation

AuthorizationStateWaitOtherDeviceConfirmation?
    get authorizationStateWaitOtherDeviceConfirmation {
  if (this is AuthorizationStateWaitOtherDeviceConfirmation) {
    return this as AuthorizationStateWaitOtherDeviceConfirmation;
  }
  return null;
}