toJson method

Map<String, dynamic> toJson()

Implementation

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