// File generated by FlutterFire CLI. // ignore_for_file: lines_longer_than_80_chars, avoid_classes_with_only_static_members import 'package:firebase_core/firebase_core.dart' show FirebaseOptions; import 'package:flutter/foundation.dart' show defaultTargetPlatform, kIsWeb, TargetPlatform; /// Default [FirebaseOptions] for use with your Firebase apps. /// /// Example: /// ```dart /// import 'firebase_options.dart'; /// // ... /// await Firebase.initializeApp( /// options: DefaultFirebaseOptions.currentPlatform, /// ); /// ``` class DefaultFirebaseOptions { static FirebaseOptions get currentPlatform { if (kIsWeb) { return web; } switch (defaultTargetPlatform) { case TargetPlatform.android: return android; case TargetPlatform.iOS: return ios; case TargetPlatform.macOS: return macos; case TargetPlatform.windows: return windows; case TargetPlatform.linux: throw UnsupportedError( 'DefaultFirebaseOptions have not been configured for linux - ' 'you can reconfigure this by running the FlutterFire CLI again.', ); default: throw UnsupportedError( 'DefaultFirebaseOptions are not supported for this platform.', ); } } static const FirebaseOptions web = FirebaseOptions( apiKey: 'AIzaSyBWdmHcBVtmkZ8Eeg5aaLF9nmsiL47MXaI', appId: '1:844787133360:web:your-web-app-id', messagingSenderId: '844787133360', projectId: 'deteksi-kebakaran-berbas-915bd', authDomain: 'deteksi-kebakaran-berbas-915bd.firebaseapp.com', storageBucket: 'deteksi-kebakaran-berbas-915bd.firebasestorage.app', databaseURL: 'https://deteksi-kebakaran-berbas-915bd-default-rtdb.firebaseio.com', ); static const FirebaseOptions android = FirebaseOptions( apiKey: 'AIzaSyBWdmHcBVtmkZ8Eeg5aaLF9nmsiL47MXaI', appId: '1:844787133360:android:31f7628397719b40494475', messagingSenderId: '844787133360', projectId: 'deteksi-kebakaran-berbas-915bd', storageBucket: 'deteksi-kebakaran-berbas-915bd.firebasestorage.app', databaseURL: 'https://deteksi-kebakaran-berbas-915bd-default-rtdb.firebaseio.com', ); static const FirebaseOptions ios = FirebaseOptions( apiKey: 'AIzaSyBWdmHcBVtmkZ8Eeg5aaLF9nmsiL47MXaI', appId: '1:844787133360:ios:your-ios-app-id', messagingSenderId: '844787133360', projectId: 'deteksi-kebakaran-berbas-915bd', storageBucket: 'deteksi-kebakaran-berbas-915bd.firebasestorage.app', iosBundleId: 'com.example.debartis', ); static const FirebaseOptions macos = FirebaseOptions( apiKey: 'AIzaSyBWdmHcBVtmkZ8Eeg5aaLF9nmsiL47MXaI', appId: '1:844787133360:macos:your-macos-app-id', messagingSenderId: '844787133360', projectId: 'deteksi-kebakaran-berbas-915bd', storageBucket: 'deteksi-kebakaran-berbas-915bd.firebasestorage.app', iosBundleId: 'com.example.debartis', ); static const FirebaseOptions windows = FirebaseOptions( apiKey: 'AIzaSyBWdmHcBVtmkZ8Eeg5aaLF9nmsiL47MXaI', appId: '1:844787133360:windows:your-windows-app-id', messagingSenderId: '844787133360', projectId: 'deteksi-kebakaran-berbas-915bd', storageBucket: 'deteksi-kebakaran-berbas-915bd.firebasestorage.app', ); }