onUserIgnored method

void onUserIgnored()

Implementation

void onUserIgnored() {
  if (widget.upgrader.state.debugLogging) {
    print('upgrader: button tapped: ignore');
  }

  // If this callback has been provided, call it.
  final doProcess = widget.onIgnore?.call() ?? true;

  if (doProcess) {
    widget.upgrader.saveIgnored();
  }

  forceRebuild();
}