onUserUpdated method

void onUserUpdated()

Implementation

void onUserUpdated() {
  if (widget.upgrader.state.debugLogging) {
    print('upgrader: button tapped: update now');
  }

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

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

  forceRebuild();
}