We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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; }
The text was updated successfully, but these errors were encountered:
Hi @NelfDesign
Thanks for bringing this to our attention. We appreciate your feedback and will address this issue in the next version.
Sorry, something went wrong.
No branches or pull requests
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;
}
The text was updated successfully, but these errors were encountered: