getSubCollectionLevel method
sub-collection level....
Implementation
Future getSubCollectionLevel(
String collectionPath, String subCollectionPath, String docID) async {
Constants.fireStoreInstance
.collection(collectionPath)
.doc(docID)
.collection(subCollectionPath)
.snapshots();
}