copyWith method
Implementation
FirebaseConfig copyWith({String? strategy, Map<String, String>? projects}) {
return FirebaseConfig(
strategy: strategy ?? this.strategy,
projects: projects ?? this.projects,
);
}
FirebaseConfig copyWith({String? strategy, Map<String, String>? projects}) {
return FirebaseConfig(
strategy: strategy ?? this.strategy,
projects: projects ?? this.projects,
);
}