WebNavigationGetFrameParams class
class WebNavigationGetFrameParams extends ChromeObject { WebNavigationGetFrameParams({int tabId, int processId, int frameId}) { if (tabId != null) this.tabId = tabId; if (processId != null) this.processId = processId; if (frameId != null) this.frameId = frameId; } WebNavigationGetFrameParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); /** * The ID of the tab in which the frame is. */ int get tabId => jsProxy['tabId']; set tabId(int value) => jsProxy['tabId'] = value; /** * The ID of the process runs the renderer for this tab. */ int get processId => jsProxy['processId']; set processId(int value) => jsProxy['processId'] = value; /** * The ID of the frame in the given tab. */ int get frameId => jsProxy['frameId']; set frameId(int value) => jsProxy['frameId'] = value; }
Extends
ChromeObject > WebNavigationGetFrameParams
Constructors
new WebNavigationGetFrameParams({int tabId, int processId, int frameId}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
WebNavigationGetFrameParams({int tabId, int processId, int frameId}) { if (tabId != null) this.tabId = tabId; if (processId != null) this.processId = processId; if (frameId != null) this.frameId = frameId; }
new WebNavigationGetFrameParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
WebNavigationGetFrameParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
int frameId #
The ID of the frame in the given tab.
int get frameId => jsProxy['frameId'];
set frameId(int value) => jsProxy['frameId'] = value;
int processId #
The ID of the process runs the renderer for this tab.
int get processId => jsProxy['processId'];
set processId(int value) => jsProxy['processId'] = value;
int tabId #
The ID of the tab in which the frame is.
int get tabId => jsProxy['tabId'];
set tabId(int value) => jsProxy['tabId'] = value;
Methods
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();