InsertStmt constructor

InsertStmt({
  1. required String table,
  2. required List<String> columns,
  3. required List values,
})

Implementation

InsertStmt({
  required this.table,
  required this.columns,
  required this.values,
});