delete method

void delete(
  1. String path
)

Deletes the document at the specified path.

Implementation

void delete(String path) {
  _batch.delete(_firestore.doc(path));
}