Framework Initialization
Initialize the MoEngage Flutter plugin in your app widget’s initState using MoEngageFlutter.
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Initialize the MoEngage Flutter plugin in your app widget’s initState using MoEngageFlutter.
import 'package:moengage_flutter/moengage_flutter.dart';
final MoEngageFlutter _moengagePlugin = MoEngageFlutter(YOUR_Workspace_ID);
@override
void initState() {
super.initState();
initPlatformState();
_moengagePlugin.initialise();
}
Was this page helpful?