initAATKit method

Future<void> initAATKit(
  1. AATKitConfiguration configuration
)

Initializes the AATKit library. Should be called once during application initialization before any other calls to AATKit.

Implementation

Future<void> initAATKit(AATKitConfiguration configuration) async {
  try {
    await AatkitFlutterPluginPlatform.instance.initAATKit(configuration);
  } on PlatformException catch (e) {
    aatkitLog("PlatformException, error: $e");
  }
}