-
-
Notifications
You must be signed in to change notification settings - Fork 280
New issue
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
_CastError: Null check operator used on a null value #1754
Comments
Could you provide more details about the section where this happened. This usually happens when there is some nullable variable that has been used in another part of the codebase while it was still null. Or this could also happen as a result of an unknown bug in any flutter channels that is not stable.
String? foo; // Nullable String
void main() {
var len = foo!.length; // Runtime error: Null check operator used on a null value
} If you think it is the other case, then try the following commands.
|
Hello @ShimronAlakkal this is a automatic error logging system, as it isn't directly produced by a dev there aren't any more infos then that it seems to be in |
could we close this issue then? |
I mean it's a issue in our code. Something what we don't want is happening so I'd keep it open |
My bad. I thought |
It's gone from sentry 😄 |
Sentry Issue: SMOOTHIE-T2
Part of
The text was updated successfully, but these errors were encountered: