OnErrorOccurredDetails constructor

OnErrorOccurredDetails({
  1. required String requestId,
  2. required String url,
  3. required String method,
  4. required int frameId,
  5. required int parentFrameId,
  6. required String documentId,
  7. String? parentDocumentId,
  8. required DocumentLifecycle documentLifecycle,
  9. required FrameType frameType,
  10. required int tabId,
  11. required ResourceType type,
  12. String? initiator,
  13. required double timeStamp,
  14. String? ip,
  15. required bool fromCache,
  16. required String error,
})

Implementation

OnErrorOccurredDetails({
  /// The ID of the request. Request IDs are unique within a browser session.
  /// As a result, they could be used to relate different events of the same
  /// request.
  required String requestId,
  required String url,

  /// Standard HTTP method.
  required String method,

  /// The value 0 indicates that the request happens in the main frame; a
  /// positive value indicates the ID of a subframe in which the request
  /// happens. If the document of a (sub-)frame is loaded (`type` is
  /// `main_frame` or `sub_frame`), `frameId` indicates the ID of this frame,
  /// not the ID of the outer frame. Frame IDs are unique within a tab.
  required int frameId,

  /// ID of frame that wraps the frame which sent the request. Set to -1 if no
  /// parent frame exists.
  required int parentFrameId,

  /// The UUID of the document making the request. This value is not present
  /// if the request is a navigation of a frame.
  required String documentId,

  /// The UUID of the parent document owning this frame. This is not set if
  /// there is no parent.
  String? parentDocumentId,

  /// The lifecycle the document is in.
  required DocumentLifecycle documentLifecycle,

  /// The type of frame the request occurred in.
  required FrameType frameType,

  /// The ID of the tab in which the request takes place. Set to -1 if the
  /// request isn't related to a tab.
  required int tabId,

  /// How the requested resource will be used.
  required ResourceType type,

  /// The origin where the request was initiated. This does not change through
  /// redirects. If this is an opaque origin, the string 'null' will be used.
  String? initiator,

  /// The time when this signal is triggered, in milliseconds since the epoch.
  required double timeStamp,

  /// The server IP address that the request was actually sent to. Note that
  /// it may be a literal IPv6 address.
  String? ip,

  /// Indicates if this response was fetched from disk cache.
  required bool fromCache,

  /// The error description. This string is _not_ guaranteed to remain
  /// backwards compatible between releases. You must not parse and act based
  /// upon its content.
  required String error,
}) : _wrapped = $js.OnErrorOccurredDetails(
        requestId: requestId,
        url: url,
        method: method,
        frameId: frameId,
        parentFrameId: parentFrameId,
        documentId: documentId,
        parentDocumentId: parentDocumentId,
        documentLifecycle: documentLifecycle.toJS,
        frameType: frameType.toJS,
        tabId: tabId,
        type: type.toJS,
        initiator: initiator,
        timeStamp: timeStamp,
        ip: ip,
        fromCache: fromCache,
        error: error,
      );