delete method
Implementation
Future<void> delete({required String table, required String where, List<String>? namespace}) async {
await _invoke("delete", {"table": table, "where": where, "namespace": namespace});
}
Future<void> delete({required String table, required String where, List<String>? namespace}) async {
await _invoke("delete", {"table": table, "where": where, "namespace": namespace});
}