getSubSubCollectionLevel method

Future getSubSubCollectionLevel(
  1. String collectionPath,
  2. String subCollectionPath,
  3. String subSubCollectionPath,
  4. String docID,
)

sub-sub-collection level....

Implementation

Future getSubSubCollectionLevel(
    String collectionPath,
    String subCollectionPath,
    String subSubCollectionPath,
    String docID) async {
  Constants.fireStoreInstance
      .collection(collectionPath)
      .doc(docID)
      .collection(subCollectionPath)
      .doc(docID)
      .collection(subSubCollectionPath)
      .snapshots();
}