toJson method
Implementation
Map<String, dynamic> toJson() {
return {
'requestUrl': requestUrl,
'responseCode': responseCode,
'responseHeaders': responseHeaders.toJson(),
'signatures': signatures.map((e) => e.toJson()).toList(),
'headerIntegrity': headerIntegrity,
};
}