I have embedded the flutter module in my iOS project. I use firebase in native project. Now I want to use firebase in flutter module too. But when I try to call Firebase.initializeApp() in flutter main, the engine seems stuck and no page is rendered.
How can I use firebase in flutter module? Are they the same instance?
void main() async {
await Firebase.initializeApp();
runApp(const MyApp());
}