authenticationCodeTypeCall property

AuthenticationCodeTypeCall? authenticationCodeTypeCall

An authentication code is delivered via a phone call to the specified phone number

Implementation

AuthenticationCodeTypeCall? get authenticationCodeTypeCall {
  if (this is AuthenticationCodeTypeCall) {
    return this as AuthenticationCodeTypeCall;
  }
  return null;
}