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