deleteValue method
Implementation
Future<void> deleteValue({
required CatalogRow row,
required String locale,
}) async {
final updated = await _client.deleteCell(
keyPath: row.keyPath,
locale: locale,
);
_valueDrafts.remove(_draftKey(row.keyPath, locale));
_queue.upsertRow(updated);
await _queue.refreshSummary();
}