TableSQL constructor

TableSQL(
  1. SQLDialect dialect,
  2. String table,
  3. List<SQLEntry> entries, {
  4. String q = '"',
  5. String? parentTable,
})

Implementation

TableSQL(SQLDialect dialect, this.table, this.entries,
    {String q = '"', this.parentTable})
    : super(dialect, q);