authenticationCodeTypeFirebaseIos property

AuthenticationCodeTypeFirebaseIos? authenticationCodeTypeFirebaseIos

An authentication code is delivered via Firebase Authentication to the official iOS application

Implementation

AuthenticationCodeTypeFirebaseIos? get authenticationCodeTypeFirebaseIos {
  if (this is AuthenticationCodeTypeFirebaseIos) {
    return this as AuthenticationCodeTypeFirebaseIos;
  }
  return null;
}