ScriptBadgeGetAttentionParams class
class ScriptBadgeGetAttentionParams extends ChromeObject { ScriptBadgeGetAttentionParams({int tabId}) { if (tabId != null) this.tabId = tabId; } ScriptBadgeGetAttentionParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy); /** * Specify the tab to request to act on. */ int get tabId => jsProxy['tabId']; set tabId(int value) => jsProxy['tabId'] = value; }
Extends
ChromeObject > ScriptBadgeGetAttentionParams
Constructors
new ScriptBadgeGetAttentionParams({int tabId}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
ScriptBadgeGetAttentionParams({int tabId}) { if (tabId != null) this.tabId = tabId; }
new ScriptBadgeGetAttentionParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
ScriptBadgeGetAttentionParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
int tabId #
Specify the tab to request to act on.
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();