internalLinkTypeAuthenticationCode property
The link contains an authentication code. Call checkAuthenticationCode with the code if the current authorization state is authorizationStateWaitCode
Implementation
InternalLinkTypeAuthenticationCode? get internalLinkTypeAuthenticationCode {
if (this is InternalLinkTypeAuthenticationCode) {
return this as InternalLinkTypeAuthenticationCode;
}
return null;
}