getSubCollectionLevel method

Future getSubCollectionLevel(
  1. String collectionPath,
  2. String subCollectionPath,
  3. String docID
)

sub-collection level....

Implementation

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