fetch method

Future<List<(A, B)>> fetch()

Query the database for rows in this Query as a List.

Implementation

Future<List<(A, B)>> fetch() async => await stream().toList();