get method

Future<List<T>> get()

Execute query and return all matching entities.

Implementation

Future<List<T>> get() async {
  final maps = await _source.collection.findWithFinder(_buildFinder());
  return _source.mapFromMaps(maps);
}