Dart Documentationchrome.browserActionBrowserActionGetPopupParams

BrowserActionGetPopupParams class

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

 /**
  * Specify the tab to get the popup from. If no tab is specified, the
  * non-tab-specific popup is returned.
  */
 int get tabId => jsProxy['tabId'];
 set tabId(int value) => jsProxy['tabId'] = value;
}

Extends

ChromeObject > BrowserActionGetPopupParams

Constructors

new BrowserActionGetPopupParams({int tabId}) #

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

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

new BrowserActionGetPopupParams.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

int tabId #

Specify the tab to get the popup from. If no tab is specified, the non-tab-specific popup is returned.

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();