removeRecordsByPath abstract method

Future<void> removeRecordsByPath(
  1. String collectionPath,
  2. List<String> documentsIds
)

Removes all documents of collectionPath collection who have id in documentsIds list.

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

Implementation

Future<void> removeRecordsByPath(
  String collectionPath,
  List<String> documentsIds,
);