IPopupBase
Overview
Each popup implements this interface, which is a very simple contract:
OnHideRequested
event Action OnHideRequested
Should be called after the popup is closed.
ShowAsync
ShowAsync(TArgs arguments, CancellationToken cancellationToken)
Should display the popup on the screen. The method accepts as input parameters with the help of which the campaign can pass additional data to the popup to customize the display and CancellationToken on the cancellation of which the display should be interrupted as soon as possible.
HideAsync
HideAsync(CancellationToken cancellationToken)
Should hide the popup from the screen. The method accepts CancellationToken on canceling of which the display should be interrupted as soon as possible.