| commit | 28436bf3e199ad6665c72f82dfe810c7817bd734 | [log] [tgz] |
|---|---|---|
| author | Nate Bosch <nbosch@google.com> | Thu Jun 13 11:09:45 2024 -0700 |
| committer | GitHub <noreply@github.com> | Thu Jun 13 11:09:45 2024 -0700 |
| tree | a894727f79ebbbf95ebdc113016cac9008e8a0df | |
| parent | 83fd0d658d35a7336997c353889413b9b190e444 [diff] |
Remove default onData for transformByHandlers (dart-lang/stream_transform#187) Towards dart-lang/stream_transform#111 The default callback is not used in practice outside of tests, but it included a cast to satisfy the type signature which looks worrying for this type of library. Make the callback required and add explicit callbacks (without a cast since the types are consistent) in the tests which used it.