Dart Documentationchrome.webNavigationWebNavigationGetAllFramesParams

WebNavigationGetAllFramesParams class

class WebNavigationGetAllFramesParams extends ChromeObject {
 WebNavigationGetAllFramesParams({int tabId}) {
   if (tabId != null) this.tabId = tabId;
 }
 WebNavigationGetAllFramesParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * The ID of the tab.
  */
 int get tabId => jsProxy['tabId'];
 set tabId(int value) => jsProxy['tabId'] = value;
}

Extends

ChromeObject > WebNavigationGetAllFramesParams

Constructors

new WebNavigationGetAllFramesParams({int tabId}) #

Create a new instance of a ChromeObject, which creates and delegates to a JsObject proxy.

docs inherited from ChromeObject
WebNavigationGetAllFramesParams({int tabId}) {
 if (tabId != null) this.tabId = tabId;
}

new WebNavigationGetAllFramesParams.fromProxy(JsObject jsProxy) #

Create a new instance of a ChromeObject, which delegates to the given JsObject proxy.

docs inherited from ChromeObject
WebNavigationGetAllFramesParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

int tabId #

The ID of the tab.

int get tabId => jsProxy['tabId'];
set tabId(int value) => jsProxy['tabId'] = value;

Methods

JsObject toJs() #

inherited from ChromeObject
JsObject toJs() => jsProxy;

String toString() #

inherited from ChromeObject

Returns a string representation of this object.

docs inherited from Object
String toString() => jsProxy.toString();