Initialize Plugin
Create MoEngageFlutter(YOUR_WORKSPACE_ID) object and in the project's App Widget call initialise() of MoEngageFlutter plugin in the initState() the method as shown below:
import 'package:moengage_flutter/moengage_flutter.dart';
final MoEngageFlutter _moengagePlugin = MoEngageFlutter(YOUR_WORKSPACE_ID);
@override
void initState() {
super.initState();
initPlatformState();
_moengagePlugin.initialise();
}
For more information, refer to Flutter SDK.
Refer to the following for platform-specific initialization: