Dart Documentationchrome.tabsTabsReloadParams

TabsReloadParams class

class TabsReloadParams extends ChromeObject {
 TabsReloadParams({bool bypassCache}) {
   if (bypassCache != null) this.bypassCache = bypassCache;
 }
 TabsReloadParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);

 /**
  * Whether using any local cache. Default is false.
  */
 bool get bypassCache => jsProxy['bypassCache'];
 set bypassCache(bool value) => jsProxy['bypassCache'] = value;
}

Extends

ChromeObject > TabsReloadParams

Constructors

new TabsReloadParams({bool bypassCache}) #

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

docs inherited from ChromeObject
TabsReloadParams({bool bypassCache}) {
 if (bypassCache != null) this.bypassCache = bypassCache;
}

new TabsReloadParams.fromProxy(JsObject jsProxy) #

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

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

Properties

bool bypassCache #

Whether using any local cache. Default is false.

bool get bypassCache => jsProxy['bypassCache'];
set bypassCache(bool value) => jsProxy['bypassCache'] = value;

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

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