convertAll<T> method

List<T> convertAll<T>()

Converts every element in this iterable to T.

Implementation

List<T> convertAll<T>() =>
    map((e) => ConvertObjectImpl.toType<T>(e)).toList();