showInAppMessages method

Future<InAppMessageResultWrapper> showInAppMessages()

Overlays billing related messages on top of the calling app.

Implementation

//
// For example, show a message to inform users that their subscription payment
// has been declined and provide options to take them to fix their payment method.
Future<InAppMessageResultWrapper> showInAppMessages() async {
  return inAppMessageResultWrapperFromPlatform(await _hostApi.showInAppMessages());
}