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
Rxdart 0.23.1 is a major change and eliminates the Observable class.
The text was updated successfully, but these errors were encountered:
Actually it was pretty easy to convert using https://pub.dev/packages/rxdart_codemod, Afterword, I think you only need to:
@override StreamSubscription<TResult> listen(void onData(TResult event), {Function onError, void onDone(), bool cancelOnError}) => _resultsSubject.listen(onData, onError: onError, onDone: onDone, cancelOnError: cancelOnError);
Haven't tested it yet. I'll see if I can whip up a PR for it.
Sorry, something went wrong.
It's on my todo list :-) a PR would be great.
Done with new Version 5.0.0
No branches or pull requests
Rxdart 0.23.1 is a major change and eliminates the Observable class.
The text was updated successfully, but these errors were encountered: