cast<R> method

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

Casts the items of the list to the desired type R.

Implementation

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