get method

Future<List<R>> get()

Every projected row.

Implementation

Future<List<R>> get() async {
  final dialect = await _resolvedDialect();
  final rows = await _select.get(
    session,
    dialect: dialect,
    timeout: timeout,
    cancellationToken: options.cancellationToken,
    options: options,
  );
  return rows.map(_map).toList(growable: false);
}