main function

Future<void> main()

Entry point for native add-to-app integration.

This is the main() function that Flutter runs when the engine starts. It initializes the SDK infrastructure and waits for native to provide the configuration via method channel.

Implementation

Future<void> main() async {
  await initializeRollaSDK();
  runApp(const _NativeEntryPoint());
}