authenticationCodeTypeMissedCall property
An authentication code is delivered by an immediately canceled call to the specified phone number. The last digits of the phone number that calls are the code that must be entered manually by the user
Implementation
AuthenticationCodeTypeMissedCall? get authenticationCodeTypeMissedCall {
if (this is AuthenticationCodeTypeMissedCall) {
return this as AuthenticationCodeTypeMissedCall;
}
return null;
}