initAATKit method
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");
}
}