removeRecordByValue abstract method

Future<void> removeRecordByValue(
  1. String collectionPath,
  2. List<DocumentQuery> documentQueries
)

Removes all documents that match the query, from the specified collection.

  • collectionPath The path to the collection. e.g - "restaurants" - "restaurants/{restaurantId}/menuItems"

Implementation

Future<void> removeRecordByValue(
  String collectionPath,
  List<DocumentQuery> documentQueries,
);