showConfirmDialog property

bool? get showConfirmDialog

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.

Implementation

bool? get showConfirmDialog => _wrapped.showConfirmDialog;
set showConfirmDialog (bool? v)

Implementation

set showConfirmDialog(bool? v) {
  _wrapped.showConfirmDialog = v;
}