Last active
January 4, 2020 13:46
-
-
Save happyharis/7656839697bebbc0790bb4cb377a0c16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:firebase/firebase.dart' as Firebase; | |
| Future<void> main() async { | |
| if (Firebase.apps.isEmpty) { | |
| print(Firebase.apps); | |
| Firebase.initializeApp( | |
| apiKey: '', | |
| authDomain: '', | |
| databaseURL: '', | |
| projectId: '', | |
| storageBucket: '', | |
| messagingSenderId: '', | |
| appId: '', | |
| ); | |
| } | |
| runApp(MyApp()); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment