nc-photos/app/lib/stream_extension.dart

4 lines
116 B
Dart
Raw Normal View History

2022-06-06 18:07:41 +08:00
extension StreamExtension<T> on Stream<T> {
2022-05-04 01:37:10 +08:00
Stream<U> whereType<U>() => where((event) => event is U).cast<U>();
}