create static method

FirebaseAuthenticationSettingsIos create({
  1. bool schemeUtilsIsSetDefaultData = false,
  2. String special_type = "firebaseAuthenticationSettingsIos",
  3. String special_return_type = "firebaseAuthenticationSettings",
  4. String? device_token,
  5. bool? is_app_sandbox,
})
override

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

Implementation

static FirebaseAuthenticationSettingsIos create({
  bool schemeUtilsIsSetDefaultData = false,
  String special_type = "firebaseAuthenticationSettingsIos",
  String special_return_type = "firebaseAuthenticationSettings",
  String? device_token,
  bool? is_app_sandbox,
}) {
  // FirebaseAuthenticationSettingsIos firebaseAuthenticationSettingsIos = FirebaseAuthenticationSettingsIos({
  final Map firebaseAuthenticationSettingsIos_data_create_json = {
    "@type": special_type,
    "@return_type": special_return_type,
    "device_token": device_token,
    "is_app_sandbox": is_app_sandbox,
  };

  firebaseAuthenticationSettingsIos_data_create_json.removeWhere((key, value) => value == null);

  if (schemeUtilsIsSetDefaultData) {
    defaultData.forEach((key, value) {
      if (firebaseAuthenticationSettingsIos_data_create_json.containsKey(key) == false) {
        firebaseAuthenticationSettingsIos_data_create_json[key] = value;
      }
    });
  }
  return FirebaseAuthenticationSettingsIos(firebaseAuthenticationSettingsIos_data_create_json);
}