| commit | 630a44133ac3a065743d6667f8bc7b77e5b59436 | [log] [tgz] |
|---|---|---|
| author | Nate Bosch <nbosch@google.com> | Mon Jun 17 17:15:42 2024 -0700 |
| committer | GitHub <noreply@github.com> | Mon Jun 17 17:15:42 2024 -0700 |
| tree | 074ded649971999f808622c2f034a36e8c598de5 | |
| parent | 7d1c52c29b7c5bff1f6e94b3f6a78a85553828a1 [diff] |
Drop checks for unsound null values (dart-lang/stream_transform#189) Towards dart-lang/stream_transform#111 During the null safety migration it was possible for `StreamSubscription.cancel()` to return `null` in some cases. Now that this package is only used with sound null safe code it isn't possible for these nulls to flow through anymore so it is not necessary to filter for them.