groupBy method

LQB groupBy(
  1. List<String> columns
)

Implementation

LQB groupBy(List<String> columns) {
  if (this._groupBy == null) this._groupBy = [];
  this._groupBy!.addAll(columns);
  return this;
}