onUserUpdated method

void onUserUpdated()

Implementation

void onUserUpdated() {
  if (widget.upgrade.debugLogging) {
    if (kDebugMode) {
      print('hcUpgrade: button tapped: update now');
    }
  }

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

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

  forceRebuild();
}