distinct method

Query distinct(
  1. List<String> column
)

Implementation

Query distinct(List<String> column) {
  if (_select != '') {
    _select += ', ';
  }
  _select += ' DISTINCT ';
  _select += column.toString().replaceAll('[', '').replaceAll(']', '');
  return this;
}