handleClearAndCancelAdRequest method

Stream<FastRewardedAdBlocState> handleClearAndCancelAdRequest()

Handles the event to clear and cancel an ad request.

Implementation

Stream<FastRewardedAdBlocState> handleClearAndCancelAdRequest() async* {
  debugLog(
    'Ad request canceled. Request id: ${currentState.requestId}',
    debugLabel: debugLabel,
  );

  yield _getEmptyState();
}