checkIsEuTraffic method
Implementation
Future<bool> checkIsEuTraffic({String? appId}) async {
print("checkIsEuTraffic: $appId");
final bool? result = await AnythinkSdk.channel.invokeMethod("checkIsEuTraffic", {
if (appId != null) "appId": appId,
});
return result ?? false;
}