withRelations method

QueryBuilder withRelations(
  1. List<String> relations
)

Implementation

QueryBuilder withRelations(List<String> relations) {
  _relations.addAll(relations);
  return this;
}