Files
lunasea/lib/firebase/options.dart
2022-05-10 21:16:16 -04:00

9 lines
306 B
Dart

import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
/// Stub that allows building the application but with Firebase disabled.
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform {
throw UnsupportedError('Firebase is not supported on this platform.');
}
}