···11+// File generated by FlutterFire CLI.
22+// ignore_for_file: type=lint
33+import 'package:firebase_core/firebase_core.dart' show FirebaseOptions;
44+import 'package:flutter/foundation.dart'
55+ show defaultTargetPlatform, kIsWeb, TargetPlatform;
66+77+/// Default [FirebaseOptions] for use with your Firebase apps.
88+///
99+/// Example:
1010+/// ```dart
1111+/// import 'firebase_options.dart';
1212+/// // ...
1313+/// await Firebase.initializeApp(
1414+/// options: DefaultFirebaseOptions.currentPlatform,
1515+/// );
1616+/// ```
1717+class DefaultFirebaseOptions {
1818+ static FirebaseOptions get currentPlatform {
1919+ if (kIsWeb) {
2020+ throw UnsupportedError(
2121+ 'DefaultFirebaseOptions have not been configured for web - '
2222+ 'you can reconfigure this by running the FlutterFire CLI again.',
2323+ );
2424+ }
2525+ switch (defaultTargetPlatform) {
2626+ case TargetPlatform.android:
2727+ return android;
2828+ case TargetPlatform.iOS:
2929+ return ios;
3030+ case TargetPlatform.macOS:
3131+ throw UnsupportedError(
3232+ 'DefaultFirebaseOptions have not been configured for macos - '
3333+ 'you can reconfigure this by running the FlutterFire CLI again.',
3434+ );
3535+ case TargetPlatform.windows:
3636+ throw UnsupportedError(
3737+ 'DefaultFirebaseOptions have not been configured for windows - '
3838+ 'you can reconfigure this by running the FlutterFire CLI again.',
3939+ );
4040+ case TargetPlatform.linux:
4141+ throw UnsupportedError(
4242+ 'DefaultFirebaseOptions have not been configured for linux - '
4343+ 'you can reconfigure this by running the FlutterFire CLI again.',
4444+ );
4545+ default:
4646+ throw UnsupportedError(
4747+ 'DefaultFirebaseOptions are not supported for this platform.',
4848+ );
4949+ }
5050+ }
5151+5252+ static const FirebaseOptions android = FirebaseOptions(
5353+ apiKey: 'AIzaSyCZUyZLcOZkt5FohWAIdDIA4ubnTkEJtKI',
5454+ appId: '1:244807562864:android:04ab7d3cda19185e2e66b5',
5555+ messagingSenderId: '244807562864',
5656+ projectId: 'sprk-social',
5757+ storageBucket: 'sprk-social.firebasestorage.app',
5858+ );
5959+6060+ static const FirebaseOptions ios = FirebaseOptions(
6161+ apiKey: 'AIzaSyBYBZLhGhUkObNbwLCXO1PmtPuEa8zthdI',
6262+ appId: '1:244807562864:ios:e5004433a6cff5ab2e66b5',
6363+ messagingSenderId: '244807562864',
6464+ projectId: 'sprk-social',
6565+ storageBucket: 'sprk-social.firebasestorage.app',
6666+ iosBundleId: 'so.sprk.app',
6767+ );
6868+}