authenticationCodeTypeSms property
An authentication code is delivered via an SMS message to the specified phone number; applications may not receive this type of code
Implementation
AuthenticationCodeTypeSms? get authenticationCodeTypeSms {
if (this is AuthenticationCodeTypeSms) {
return this as AuthenticationCodeTypeSms;
}
return null;
}