findDocuments method

Future findDocuments({
  1. String? collectionName,
  2. String? databaseName,
  3. dynamic filter,
  4. String? projection,
  5. int? limit,
  6. String? sort,
})

Implementation

Future findDocuments({
  String? collectionName,
  String? databaseName,
  dynamic filter,
  String? projection,
  int? limit,
  String? sort,
}) async {
  throw UnimplementedError('findDocuments() has not been implemented.');
}