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
late
For the implementation, we could do one of the following:
dartDefault
null
Boolean
For the first, we'd have to use Object as the type for the underlying value and add casts in exposed getters and setters, but that should be fine.
Object
The text was updated successfully, but these errors were encountered:
I consider this low priority since in no way will it impact adoption.
Sorry, something went wrong.
This also affects late + specified (memoized) for static and non-static members and toplevels.
No branches or pull requests
For the implementation, we could do one of the following:
late
indicator value (analogous todartDefault
) for uninitialized values, ornull
as the indicator value for non-optionals, and a separateBoolean
for optionals.For the first, we'd have to use
Object
as the type for the underlying value and add casts in exposed getters and setters, but that should be fine.The text was updated successfully, but these errors were encountered: