editConsent method

Future<void> editConsent()

Presents the consent screen, allowing the user to change consent settings.

Implementation

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