cancel method

void cancel()

Implementation

void cancel() {
  debugPrint("❌ DART: Age verification cancelled");
  _cleanup();
  state = state.copyWith(
      step: AgeVerificationStep.initial,
      shouldDismiss: true
  );
  onCompletion?.call();
}