factory HTTPHeader.fromJson(Map<String, dynamic> json) { return HTTPHeader( name: json['Name'] as String?, value: json['Value'] as String?, ); }