Links
Comment on page

Mobile Flutter apps

In addition to iOS and Android native integration, your Flutter app must also perform the following:
Call AppfigurateLibrary.initialize() in main() and wait for it to return.
Dart main.dart example
void main() async {
await AppfigurateLibrary.initialize();
runApp(const MyApp());
}