fromCollection method

CollectionQueryBuilder fromCollection(
  1. String collectionPathTemplate
)

Implementation

CollectionQueryBuilder fromCollection(String collectionPathTemplate) {
  final queryState = QueryState(
    this.rootState,
    (collectionPathTemplate as dynamic) as String,
    this.app,
  );
  return CollectionQueryBuilder(queryState);
}