cast<R> method

  1. @override
Iterable<R> cast<R>()
override

Returns a list of R instances. If this list contains instances which cannot be cast to R, it will throw an error.

Implementation

@override
Iterable<R> cast<R>() => _l.cast<R>();