Initialization

Initialize AATKit

Use initialize function to initialize AATKit. This operation should be run only once during the application lifecycle. You can pass configuration object as the parameter to set desired configuration. Please see the example below where AATKit is initialized with test mode using ID 74:

await _aatkitFlutterPlugin.initAATKit(
  AATKitConfiguration(
    testModeAccountId: 74,
  ),
);

Last updated