presentCodeRedemptionSheet method

Future<void> presentCodeRedemptionSheet()

Call this method to have StoreKit present a sheet enabling the user to redeem codes provided by your app.

Implementation

Future<void> presentCodeRedemptionSheet() {
  if (!AdaptySDKNative.isIOS) return Future.value();
  return _invokeMethodHandlingErrors<void>(Method.presentCodeRedemptionSheet);
}