UpdateStmt constructor

UpdateStmt({
  1. required String table,
  2. required Map<String, dynamic> updates,
  3. Expr? where,
})

Implementation

UpdateStmt({required this.table, required this.updates, this.where});