internalLinkTypeQrCodeAuthentication property

InternalLinkTypeQrCodeAuthentication? internalLinkTypeQrCodeAuthentication

The link can be used to login the current user on another device, but it must be scanned from QR-code using in-app camera. An alert similar to

Implementation

InternalLinkTypeQrCodeAuthentication?
    get internalLinkTypeQrCodeAuthentication {
  if (this is InternalLinkTypeQrCodeAuthentication) {
    return this as InternalLinkTypeQrCodeAuthentication;
  }
  return null;
}