fromJson static method
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,
);
}