GetFrameDetails constructor
GetFrameDetails(
{ - int? tabId,
- int? processId,
- int? frameId,
- 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,
);