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