mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-23 09:16:19 +01:00
4 lines
110 B
Dart
4 lines
110 B
Dart
|
extension StreamExtension on Stream {
|
||
|
Stream<U> whereType<U>() => where((event) => event is U).cast<U>();
|
||
|
}
|