onUserUpdated method

void onUserUpdated(
  1. BuildContext context,
  2. bool shouldPop
)

Implementation

void onUserUpdated(BuildContext context, bool shouldPop) {
  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();
  }

  if (shouldPop) {
    popNavigator(context);
  }
}