Download Latest Version rxdart_flutter v0.0.1 (2025-02-15) source code.zip (1.6 MB)
Email in envelope

Get an email when there's a new version of RxDart

Home / 0.27.7
Name Modified Size InfoDownloads / Week
Parent folder
0.27.7 source code.tar.gz 2022-11-16 1.0 MB
0.27.7 source code.zip 2022-11-16 1.2 MB
README.md 2022-11-16 1.3 kB
Totals: 3 Items   2.2 MB 0

https://pub.dev/packages/rxdart/versions/0.27.7

Fixed

  • Subject
  • Only call onAdd and onError if the subject is not closed. This ensures BehaviorSubject and ReplaySubject do not update their values after they have been closed.

  • Subject.stream now returns a read-only Stream. Previously, Subject.stream was identical to the Subject, so we could add events to it, for example: (subject.stream as Sink<T>).add(event). This behavior is now disallowed, and will throw a TypeError if attempted. Use Subject.sink/Subject itself for adding events.

  • Change return type of ReplaySubject<T>.stream to ReplayStream<T>.

  • Internal refactoring of Subject.addStream.

What's Changed

Full Changelog: https://github.com/ReactiveX/rxdart/compare/0.27.6...0.27.7

Source: README.md, updated 2022-11-16