getBasedOnEqualsTo method
getBasedOnEqualsTo....
Implementation
Future getBasedOnEqualsTo(
String collectionPath,
String field,
String value,
String docID) async {
Constants.fireStoreInstance
.collection(collectionPath)
.where(field,isEqualTo: value)
.snapshots();
}