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
Future<bool> _unimportLutFolder(WidgetRef ref, Directory currentDirectory) { // ... } // build function return Dismissible( direction: DismissDirection.startToEnd, background: Container( color: Colors.red, ), confirmDismiss: (final DismissDirection dissmissDirection) { return _unimportLutFolder(ref, currentDirectory); }, key: Key(currentDirectory.path), child: _MyRow(_treeEntry, _treeController), );
{Future<bool?> Function(DismissDirection)? confirmDismiss}
the linter thinks the future of _unimportLutFolder is discarded but confirmDismiss expects a Future<bool?>
_unimportLutFolder
confirmDismiss
Future<bool?>
The text was updated successfully, but these errors were encountered:
The main CL for #59887 has landed already which should address this. See the referenced issues on the description for this one.
P.S.: I can't close this myself.
Sorry, something went wrong.
@FMorschel thanks, I will close my issue, any idea when it will be shipped?
If you are on the browser you can see the tags for this commit which should indicate this will be available as of Dart 3.8
No branches or pull requests
{Future<bool?> Function(DismissDirection)? confirmDismiss}
the linter thinks the future of
_unimportLutFolder
is discarded butconfirmDismiss
expects aFuture<bool?>
The text was updated successfully, but these errors were encountered: