m3_lightmeter/scripts/mocks/mock_firebase_options.dart
2025-03-17 22:16:41 +01:00

7 lines
268 B
Dart

// ignore_for_file: type=lint
import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
class DefaultFirebaseOptions {
static FirebaseOptions get currentPlatform =>
FirebaseOptions(apiKey: '', appId: '', messagingSenderId: '', projectId: '');
}