SelectStmt constructor
SelectStmt({})
Implementation
SelectStmt({
this.distinct = false,
required this.columns,
required this.table,
this.join,
List<JoinSpec>? joins,
this.where,
this.groupBy = const [],
this.having,
this.orderBy = const [],
this.limit,
this.offset,
}) : joins = joins ?? (join != null ? [join] : const []);