getBasedOnMultiQueryEqualsTo method
multi-query based on two equals....
Implementation
Future getBasedOnMultiQueryEqualsTo(
String collectionPath,
String field,
String value,
String secField,
String secValue,
String docID) async {
Constants.fireStoreInstance
.collection(collectionPath)
.where(field,isEqualTo: value)
.where(secField,isEqualTo: secValue)
.snapshots();
}