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