getBasedOnMultiQueryEqualsOrderBy method
multi-query based on equals and order....
Implementation
Future getBasedOnMultiQueryEqualsOrderBy(
String collectionPath,
String field,
String value,
String secField,
bool secValue,
String docID) async {
Constants.fireStoreInstance
.collection(collectionPath)
.where(field,isEqualTo: value)
.orderBy(secField,descending: secValue)
.snapshots();
}