asListAsync property

FutureOr<List<T>> asListAsync

Implementation

FutureOr<List<T>> get asListAsync =>
    then((itr) => itr is List<T> ? itr : itr.toList());