import 'firebase/firebase_options_dev.dart'; import 'main.dart'; /// DEV flavor entrypoint. /// /// Run/build with the matching flavor + env file: /// flutter run --flavor dev -t lib/main_dev.dart \ /// --dart-define-from-file=env/dev.json void main() { bootstrap( firebaseOptions: DevFirebaseOptions.currentPlatform, flavor: 'dev', ); }