getBasedOnGreaterThan method

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

getBasedOnGreaterThan....

Implementation

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