Dart Documentationchrome.managementManagementUninstallParams

ManagementUninstallParams class

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

 /**
  * Whether or not a confirm-uninstall dialog should prompt the user. Defaults
  * to false.
  */
 bool get showConfirmDialog => jsProxy['showConfirmDialog'];
 set showConfirmDialog(bool value) => jsProxy['showConfirmDialog'] = value;
}

Extends

ChromeObject > ManagementUninstallParams

Constructors

new ManagementUninstallParams({bool showConfirmDialog}) #

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

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

new ManagementUninstallParams.fromProxy(JsObject jsProxy) #

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

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

Properties

final jsProxy #

inherited from ChromeObject
final dynamic jsProxy

bool showConfirmDialog #

Whether or not a confirm-uninstall dialog should prompt the user. Defaults to false.

bool get showConfirmDialog => jsProxy['showConfirmDialog'];
set showConfirmDialog(bool value) => jsProxy['showConfirmDialog'] = 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();