withRelated method

DatumQueryBuilder<T> withRelated(
  1. List<String> relations
)

Implementation

DatumQueryBuilder<T> withRelated(List<String> relations) {
  _withRelated.addAll(relations);
  return this;
}