ManagementUninstallSelfParams class
class ManagementUninstallSelfParams extends ChromeObject { ManagementUninstallSelfParams({bool showConfirmDialog}) { if (showConfirmDialog != null) this.showConfirmDialog = showConfirmDialog; } ManagementUninstallSelfParams.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 > ManagementUninstallSelfParams
Constructors
new ManagementUninstallSelfParams({bool showConfirmDialog}) #
Create a new instance of a ChromeObject
, which creates and delegates to
a JsObject proxy.
docs inherited from ChromeObject
ManagementUninstallSelfParams({bool showConfirmDialog}) { if (showConfirmDialog != null) this.showConfirmDialog = showConfirmDialog; }
new ManagementUninstallSelfParams.fromProxy(JsObject jsProxy) #
Create a new instance of a ChromeObject
, which delegates to the given
JsObject proxy.
docs inherited from ChromeObject
ManagementUninstallSelfParams.fromProxy(JsObject jsProxy): super.fromProxy(jsProxy);
Properties
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
String toString() #
inherited from ChromeObject
Returns a string representation of this object.
docs inherited from Object
String toString() => jsProxy.toString();