Dart Documentationchrome.pageCapturePageCaptureSaveAsMHTMLParams

PageCaptureSaveAsMHTMLParams class

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

 /**
  * The id of the tab to save as MHTML.
  */
 int get tabId => jsProxy['tabId'];
 set tabId(int value) => jsProxy['tabId'] = value;
}

Extends

ChromeObject > PageCaptureSaveAsMHTMLParams

Constructors

new PageCaptureSaveAsMHTMLParams({int tabId}) #

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

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

new PageCaptureSaveAsMHTMLParams.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

int tabId #

The id of the tab to save as MHTML.

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