find method

Future<List<Map<String, dynamic>>> find({
  1. dynamic fields,
  2. int? limit,
  3. int? page,
  4. bool? ignoreDefaultFilter,
  5. bool? populate,
  6. Map<String, dynamic>? filter,
  7. Duration? cache,
})

Implementation

Future<List<Map<String, dynamic>>> find({
  dynamic fields,
  int? limit,
  int? page,
  bool? ignoreDefaultFilter,
  bool? populate,
  Map<String, dynamic>? filter,
  Duration? cache,
}) =>
    _collection(
      limit: limit,
      page: page,
      fields: fields,
      ignoreDefaultFilter: ignoreDefaultFilter ?? false,
      populate: populate ?? true,
      filter: filter,
      cache: cache,
    );