Closed
Description
Hi,
this method in your package has an error
static Future<String?> updateSkanConversionValue(int conversionValue, String coarseValue, bool lockWindow) async {
final String error = await _channel.invokeMethod('updateSkanConversionValue', {
'conversionValue': conversionValue,
'coarseValue': coarseValue,
'lockWindow': lockWindow
});
return error;
}
If the error is null the application stop.
Please correct the method like this
static Future<String?> updateSkanConversionValue(int conversionValue, String coarseValue, bool lockWindow) async {
final String? error = await _channel.invokeMethod('updateSkanConversionValue', {
'conversionValue': conversionValue,
'coarseValue': coarseValue,
'lockWindow': lockWindow
});
return error;
}
Metadata
Metadata
Assignees
Labels
No labels