globalAdImpressionCallBack method
Implementation
globalAdImpressionCallBack(MethodCall call) {
String method = call.method;
var arguments = call.arguments;
if (globalAdImpressionListener == null) {
print("not set globalAdImpressionListener");
return;
}
TPSDKManager.globalAdImpressionCallback(
globalAdImpressionListener!, method, arguments);
}