nc-photos/app/lib/stream_extension.dart

4 lines
116 B
Dart
Raw Normal View History

2022-06-06 12:07:41 +02:00
extension StreamExtension<T> on Stream<T> {
2022-05-03 19:37:10 +02:00
Stream<U> whereType<U>() => where((event) => event is U).cast<U>();
}