whereType<U> method

  1. @override
Iter<U> whereType<U>()
override

Creates an Iter where all the elements are of Type U.

Implementation

@override
@pragma("vm:prefer-inline")
Iter<U> whereType<U>() => Iter.fromIterable(super.whereType());