select method

Query select(
  1. List<String> column
)

Implementation

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