copyWith method

FirebaseConfig copyWith({
  1. String? strategy,
  2. Map<String, String>? projects,
})

Implementation

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