selectAll method

QueryBuilder selectAll(
  1. List<String> fields
)

Select multiple fields to return

Implementation

QueryBuilder selectAll(List<String> fields) {
  _select.addAll(fields);
  return this;
}