@override void setAttribute(String key, Object? value) { if (value == null) { map.remove(key); } else { map[key] = value as V; } }