SelectTableSchema constructor

const SelectTableSchema(
  1. String from, {
  2. required List<String> columns,
  3. String? as,
  4. WhereClause? where,
  5. List<JoinClause>? joins,
})

Implementation

const SelectTableSchema(this.from,
    {required this.columns, this.as, this.where, this.joins});