delete method
Implementation
Future<int> delete({required String table, required String where, Object? params}) {
return client.delete(database: database, table: table, where: where, params: params, namespace: namespace);
}
Future<int> delete({required String table, required String where, Object? params}) {
return client.delete(database: database, table: table, where: where, params: params, namespace: namespace);
}