delete abstract method

Future<DbResult> delete(
  1. String table, {
  2. required Map<String, dynamic> where,
})

Deletes one or more rows from the specified table.

  • where: Conditions to match rows (e.g., {'id': 1}).

Implementation

Future<DbResult> delete(String table, {required Map<String, dynamic> where});