firebaseAuthenticationSettingsIos property

FirebaseAuthenticationSettingsIos? firebaseAuthenticationSettingsIos

Settings for Firebase Authentication in the official iOS application

Implementation

FirebaseAuthenticationSettingsIos? get firebaseAuthenticationSettingsIos {
  if (this is FirebaseAuthenticationSettingsIos) {
    return this as FirebaseAuthenticationSettingsIos;
  }
  return null;
}