mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2025-04-04 08:30:41 +00:00
7 lines
268 B
Dart
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: '');
|
|
}
|