SelectStatement constructor
const
SelectStatement(
- String from,
- List<
SelectedColumn> select, { - required WhereClauseGroup where,
- List<
OrderByElement> orderBy = const [], - 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 [],
});