asListAsync property

Future<List<T>> asListAsync

Implementation

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