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