showGDPRConsentDialog method

Future showGDPRConsentDialog({
  1. String? appId,
})

Implementation

Future<dynamic> showGDPRConsentDialog({String? appId}) async {
  print("showGDPRConsentDialog: $appId");
  return await AnythinkSdk.channel.invokeMethod("showGDPRConsentDialog", {
    if (appId != null) "appId": appId,
  });
}