configDocRef function

CollectionReference<Object?> configDocRef()

Implementation

CollectionReference configDocRef() {
  return FirebaseFirestore.instance
      .collection('exampleCollection')
      .doc('exampleDocument')
      .collection('exampleCollection');
}