fetch method

Future<List<(A, B, C, D, E)>> fetch()

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

Implementation

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