fromJson static method

FirebaseAuthenticationSettingsIos? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static FirebaseAuthenticationSettingsIos? fromJson(
  Map<String, dynamic>? json,
) {
  if (json == null) {
    return null;
  }

  return FirebaseAuthenticationSettingsIos(
    deviceToken: (json['device_token'] as String?) ?? '',
    isAppSandbox: (json['is_app_sandbox'] as bool?) ?? false,
  );
}