void setDefaultHeader(String key, String? value) { if (value == null) { _defaultHeaderMap.remove(key); } else { _defaultHeaderMap[key] = value; } }