| commit | 7cd0d9e43c8e6a7172751e9dc6f1a52b971844b9 | [log] [tgz] |
|---|---|---|
| author | Nate Bosch <nbosch@google.com> | Mon Jan 11 16:53:11 2021 -0800 |
| committer | GitHub <noreply@github.com> | Mon Jan 11 16:53:11 2021 -0800 |
| tree | eff2079c695988d20669673993d05ad1ec1e8211 | |
| parent | 8bb79ade621cf97d4d3a6d46ba69ee160f4cf7df [diff] |
Allow null values in asyncMapSample and buffer (dart-lang/stream_transform#124) Closes dart-lang/stream_transform#121 - Add a boolean to track whether we have a value since we can't use `null` as a sentinel value for a potentially nullable generic type. - Replace `!` with `as S` to allow for nullable `S`.