Framework Initialization
Follow

Initialize Plugin

Create MoEngageFlutter(YOUR_APP_ID) object and in the project's App Widget call initialise() of MoEngageFlutter plugin in the initState() the method as shown below:

Dart
  import 'package:moengage_flutter/moengage_flutter.dart';

  final MoEngageFlutter _moengagePlugin = MoEngageFlutter(YOUR_APP_ID);

  @override
  void initState() {
    super.initState();
    initPlatformState();
    _moengagePlugin.initialise();
  }

For more information, refer to Flutter SDK.

Refer to the following for platform-specific initialization:

Was this article helpful?
0 out of 0 found this helpful