rawDelete abstract method
Executes a raw SQL DELETE query and returns the number of changes made.
int count = await database
.rawDelete('DELETE FROM Test WHERE name = ?', ['another name']);
Implementation
Future<int> rawDelete(String sql, [List<Object?>? arguments]);