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
While digging through the code I have noticed that the StreamController are not closed.
StreamController
Ie date_input.dart:
final _controller = StreamController<Date?>.broadcast();
Shouldn't we close it within ngOnDestroy to not have a memory leak?
ngOnDestroy
I guess it would be better if we attach it into Disposer and let it clear the stuff.
Disposer
The text was updated successfully, but these errors were encountered:
No branches or pull requests
While digging through the code I have noticed that the
StreamController
are not closed.Ie date_input.dart:
Shouldn't we close it within
ngOnDestroy
to not have a memory leak?I guess it would be better if we attach it into
Disposer
and let it clear the stuff.The text was updated successfully, but these errors were encountered: