getBasedOnDocID method
get based on document ID.....
Implementation
Future getBasedOnDocID(
String collectionPath,
String docID) async {
Constants.fireStoreInstance
.collection(collectionPath)
.doc(docID)
.snapshots();
}