getPromotedProductIOS method

Future<String?> getPromotedProductIOS()

Add Store Payment (iOS only) Indicates that the App Store purchase should continue from the app instead of the App Store.

@returns {Future

Implementation

Future<String?> getPromotedProductIOS() async {
  if (_platform.isIOS) {
    return await _channel.invokeMethod('getPromotedProduct');
  }
  return null;
}