getAll abstract method

Future<List<Object>> getAll([
  1. Object? query,
  2. int? count
])

returns all objects in the index matching the specified parameter or all objects in the index if no parameters are given.

Implementation

Future<List<Object>> getAll([Object? query, int? count]);