getBasedOnLessThan method

Future getBasedOnLessThan(
  1. String collectionPath,
  2. String field,
  3. String value,
  4. String docID,
)

getBasedOnLessThan....

Implementation

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