Co-authored-by: MENDOZA BALLARDO GAEL RICARDO <gael-meb123@users.noreply.github.com> configuracion para firebase
15 lines
586 B
Dart
15 lines
586 B
Dart
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
|
|
|
|
// Placeholder file for Firebase configuration.
|
|
// Run `flutterfire configure` to generate a proper `firebase_options.dart` file
|
|
// and replace the implementation below. For local dev you can also rely on
|
|
// `google-services.json` (Android) and `GoogleService-Info.plist` (iOS) instead
|
|
// of providing explicit FirebaseOptions.
|
|
|
|
class DefaultFirebaseOptions {
|
|
static FirebaseOptions? get currentPlatform {
|
|
// TODO: Replace with generated FirebaseOptions from `flutterfire configure`.
|
|
return null;
|
|
}
|
|
}
|