updateConversionValueWithErrorCallback static method
Implementation
static Future<String?> updateConversionValueWithErrorCallback(int conversionValue) async {
final String? error = await _channel.invokeMethod(
'updateConversionValueWithErrorCallback', {'conversionValue': conversionValue});
return error;
}