get method

Future<List<Map<String, dynamic>>> get()

Executes a SELECT query and returns the matching rows.

Implementation

Future<List<Map<String, dynamic>>> get() async {
  final result = await _executor.query(_buildSelect(), _snapshotParams());
  return result.rows;
}