UninstallOptions constructor
UninstallOptions({
- bool? showConfirmDialog,
Implementation
UninstallOptions(
{
/// Whether or not a confirm-uninstall dialog should prompt the user.
/// Defaults to false for self uninstalls. If an extension uninstalls
/// another extension, this parameter is ignored and the dialog is always
/// shown.
bool? showConfirmDialog})
: _wrapped = $js.UninstallOptions(showConfirmDialog: showConfirmDialog);