Now that Observable is removed from latest version of rxdart, we can use Dart's lang Stream instead of it, but what if I use methods like combineLatest2 with Stream. I tried rxdart_codemod but it doesn't seem to do anything with the breaking changes.
Rx.combineLatest2
On Sun, Dec 15, 2019, 10:44 PritishSawant notifications@github.com wrote:
Now that Observable is removed from latest version of rxdart, we can use
Dart's lang Stream instead of it, but what if I use methods like
combineLatest2 with Stream. I tried rxdart_codemod but it doesn't seem to
do anything with the breaking changes.—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
https://github.com/ReactiveX/rxdart/issues/380?email_source=notifications&email_token=AIZU7Z6UO4ITGNNZYL5CAQDQYWRYHA5CNFSM4J26C6Y2YY3PNVWWK3TUL52HS4DFUVEXG43VMWVGG33NNVSW45C7NFSM4IARGLGA,
or unsubscribe
https://github.com/notifications/unsubscribe-auth/AIZU7ZZHITHJFN2CZ6GKTL3QYWRYHANCNFSM4J26C6YQ
.
abstract class Rx contains static methods: zip, combineLatest, concat, merge, race, etc
@hoc081098 Thanks a lot