params property

  1. @override
JSONEncodable? params
override

Implementation

@override
JSONEncodable? get params => JSONEncodableMap({
      'requestId': requestId,
      'loaderId': loaderId,
      'timestamp': timestamp,
      'type': type,
      'response': {
        'url': url,
        'status': status,
        'statusText': statusText,
        'headers': headers.map((key, value) => MapEntry(key, value.join(''))),
        'mimeType': mimeType,
        'connectionReused': false,
        'connectionId': 0,
        'remoteIPAddress': remoteIPAddress,
        'remotePort': remotePort,
        'fromDiskCache': fromDiskCache,
        'encodedDataLength': encodedDataLength,
        'protocol': protocol,
        'securityState': 'secure',
      },
      'hasExtraInfo': false,
    });