Dart Documentationchrome.browserActionBrowserActionGetTitleParams

BrowserActionGetTitleParams class

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

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

Extends

ChromeObject > BrowserActionGetTitleParams

Constructors

new BrowserActionGetTitleParams({int tabId}) #

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

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

new BrowserActionGetTitleParams.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

int tabId #

Specify the tab to get the title from. If no tab is specified, the non-tab-specific title 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();