SelectStatement constructor

const SelectStatement(
  1. String from,
  2. List<SelectedColumn> select, {
  3. required WhereClauseGroup where,
  4. List<OrderByElement> orderBy = const [],
  5. List<Join> joins = const [],
})

Creates a new select statement.

Implementation

const SelectStatement(
  this.from,
  this.select, {
  required this.where,
  this.orderBy = const [],
  this.joins = const [],
});