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
This is Dao fun
@Query('UPDATE ShareApp SET isPresent = :isPresent WHERE appId = :appId') Future<void> updateShareApp(String appId, bool isPresent);
this is auto generated code
@override Future<void> updateShareApp(String appId, bool isPresent) async { await _queryAdapter.queryNoReturn( 'UPDATE ShareApp SET isPresent = ? WHERE appId = ?', arguments: <dynamic>[ appId, isPresent == null ? null : (isPresent ? 1 : 0) ]); }
It's taking fun parameters' sequence not in Query sequence
The text was updated successfully, but these errors were encountered:
This issue is known(#224) and will be solved with #361.
Sorry, something went wrong.
This issue was solved with #509
No branches or pull requests
This is Dao fun
this is auto generated code
It's taking fun parameters' sequence not in Query sequence
The text was updated successfully, but these errors were encountered: