void add(String key, String? value, {bool forceNull = false}) { if (value != null || forceNull) this[key] = value; }