selAll method

Find selAll([
  1. String? table
])

Selects a column to be fetched. Use alias to alias the column name.

Implementation

Find selAll([String? table]) {
  String col = (table == null ? '' : table + '.') + '*';
  _column.add(SelColumn(col));
  return this;
}