whereType<T> method

  1. @override
Iterable<T> whereType<T>()
override

Returns an iterable containing only elements of type T.

This is a non-mutating operation that returns an iterable.

Implementation

@override
Iterable<T> whereType<T>() => value.whereType<T>();