Comment on page
Mobile Flutter apps
Call
AppfigurateLibrary.initialize()
in main()
and wait for it to return.Dart main.dart example
void main() async {
await AppfigurateLibrary.initialize();
runApp(const MyApp());
}