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
1.4.11
Result is false
Result is true
bool remove(DateTime date, T event) { return events != null && events.containsKey(date) ? events[date].remove(event) : true; }
In this func, i think if events.containsKey(date) == false it should return false. EX:
events.containsKey(date) == false
false
bool remove(DateTime date, T event) { return events != null && events.containsKey(date) ? events[date].remove(event) : false; }
The text was updated successfully, but these errors were encountered:
Would you like to give a PR for this?
PR
Sorry, something went wrong.
fb3fd08
No branches or pull requests
Version of flutter_calendar_carousel
1.4.11
Expected behavior
Result is false
Actual behavior
Result is true
flutter doctor result (run flutter doctor in terminal)
Steps to reproduce the behavior
In this func, i think if
events.containsKey(date) == false
it should returnfalse
.EX:
The text was updated successfully, but these errors were encountered: