update method
Implementation
Future<void> update({
required String table,
required String where,
required DatasetRecord values,
List<String>? namespace,
String? branch,
}) async {
await _invoke("update", {
"table": table,
"where": where,
"values": values.entries.map((entry) => {"column": entry.key, "value_json": _valueJson(entry.value)}).toList(growable: false),
"namespace": namespace,
"branch": branch,
});
}