showGDPRConsentSecondDialog method

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

Implementation

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