skanUpdateConversionValue static method
Implementation
static Future<bool> skanUpdateConversionValue(int conversionValue) async {
if (Platform.isIOS) {
final bool isConversionValueUpdated = await _channel.invokeMethod(
'skanUpdateConversionValue', {'conversionValue': conversionValue});
return isConversionValueUpdated;
}
return false;
}