onUserChoiceAlternativeBilling method

  1. @visibleForTesting
void onUserChoiceAlternativeBilling(
  1. UserChoiceDetailsWrapper event
)

Callback passed to BillingClient to use when customer chooses alternative billing.

Implementation

@visibleForTesting
void onUserChoiceAlternativeBilling(UserChoiceDetailsWrapper event) {
  if (_isDisposed) {
    return;
  }
  _userChoiceAlternativeBillingController.add(event);
}