OnDomContentLoadedDetails constructor

OnDomContentLoadedDetails({
  1. required int tabId,
  2. required String url,
  3. required int processId,
  4. required int frameId,
  5. required int parentFrameId,
  6. required double timeStamp,
  7. required String documentId,
  8. String? parentDocumentId,
  9. required DocumentLifecycle documentLifecycle,
  10. required FrameType frameType,
})

Implementation

OnDomContentLoadedDetails({
  /// The ID of the tab in which the navigation occurs.
  required int tabId,
  required String url,

  /// The ID of the process that runs the renderer for this frame.
  required int processId,

  /// 0 indicates the navigation happens in the tab content window; a positive
  /// value indicates navigation in a subframe. Frame IDs are unique within a
  /// tab.
  required int frameId,

  /// The ID of the parent frame, or `-1` if this is the main frame.
  required int parentFrameId,

  /// The time when the page's DOM was fully constructed, in milliseconds
  /// since the epoch.
  required double timeStamp,

  /// A UUID of the document loaded.
  required String documentId,

  /// A 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 navigation occurred in.
  required FrameType frameType,
}) : _wrapped = $js.OnDomContentLoadedDetails(
        tabId: tabId,
        url: url,
        processId: processId,
        frameId: frameId,
        parentFrameId: parentFrameId,
        timeStamp: timeStamp,
        documentId: documentId,
        parentDocumentId: parentDocumentId,
        documentLifecycle: documentLifecycle.toJS,
        frameType: frameType.toJS,
      );