RequestInterceptedEvent constructor

RequestInterceptedEvent({
  1. required InterceptionId interceptionId,
  2. required RequestData request,
  3. required FrameId frameId,
  4. required ResourceType resourceType,
  5. required bool isNavigationRequest,
  6. bool? isDownload,
  7. String? redirectUrl,
  8. AuthChallenge? authChallenge,
  9. ErrorReason? responseErrorReason,
  10. int? responseStatusCode,
  11. Headers? responseHeaders,
  12. RequestId? requestId,
})

Implementation

RequestInterceptedEvent(
    {required this.interceptionId,
    required this.request,
    required this.frameId,
    required this.resourceType,
    required this.isNavigationRequest,
    this.isDownload,
    this.redirectUrl,
    this.authChallenge,
    this.responseErrorReason,
    this.responseStatusCode,
    this.responseHeaders,
    this.requestId});