firebase_authentication_settings_ios property

FirebaseAuthenticationSettingsIos get firebase_authentication_settings_ios

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

FirebaseAuthenticationSettingsIos get firebase_authentication_settings_ios {
  try {
    if (rawData["firebase_authentication_settings_ios"] is Map == false) {
      return FirebaseAuthenticationSettingsIos({});
    }
    return FirebaseAuthenticationSettingsIos(rawData["firebase_authentication_settings_ios"] as Map);
  } catch (e) {
    return FirebaseAuthenticationSettingsIos({});
  }
}
set firebase_authentication_settings_ios (FirebaseAuthenticationSettingsIos value)

Generate By General Universe Script Dont edit by hand or anything manual

Implementation

set firebase_authentication_settings_ios(FirebaseAuthenticationSettingsIos value) {
  rawData["firebase_authentication_settings_ios"] = value.toJson();
}