remove method

  1. @override
Future<void> remove(
  1. String documentId
)
override

Forgets documentId.

Removing an id that is not there is not an error.

Implementation

@override
Future<void> remove(String documentId) async {
  _ids.remove(documentId);
}