collection method

CollectionReferencePlatform collection(
  1. String collectionPath
)

Returns a CollectionReferencePlatform starting from the current document pointer.

Implementation

CollectionReferencePlatform collection(String collectionPath) {
  return firestore.collection(_pointer.collectionPath(collectionPath));
}