reloadConsent method

Future<void> reloadConsent()

Tells the CMP to reload. Does not need to be used unless some error occurs.

Implementation

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