handlePurchasePlanCanceledEvent method
Implementation
Stream<FastPlanBlocState> handlePurchasePlanCanceledEvent(
String productId,
) async* {
if (_isPurchasePending) {
debugLog('Purchase plan canceled: $productId');
_isPurchasePending = false;
yield currentState.copyWith(isPlanPurchasePending: false);
}
}