Unity — Presenting visual paywalls

To present (show) a paywall view call view.Present() method. You can use view from the previous step, we will introduce a new one:

view.Present((error) => {
  // handle the error
});

Dismissing a paywall view

You can dismiss (hide) a paywall view by calling a view.Dismiss.

view.Dismiss((error) => {
  // handle the error
});