oneWithID method
Deletes a document from Firestore by its type and document ID.
Implementation
oneWithID(Type type, String documentID) async {
DocumentReference ref = FS.instance.collection(type.toString()).doc(documentID);
return _batch.delete(ref);
}