GetFrameDetails constructor

GetFrameDetails({
  1. int? tabId,
  2. int? processId,
  3. int? frameId,
  4. String? documentId,
})

Implementation

GetFrameDetails({
  /// The ID of the tab in which the frame is.
  int? tabId,

  /// The ID of the process that runs the renderer for this tab.
  int? processId,

  /// The ID of the frame in the given tab.
  int? frameId,

  /// The UUID of the document. If the frameId and/or tabId are provided they
  /// will be validated to match the document found by provided document ID.
  String? documentId,
}) : _wrapped = $js.GetFrameDetails(
        tabId: tabId,
        processId: processId,
        frameId: frameId,
        documentId: documentId,
      );