showPromoCodesIOS method

Future<String> showPromoCodesIOS()

Implementation

Future<String> showPromoCodesIOS() async {
  if (_platform.isIOS) {
    return await _channel.invokeMethod('showRedeemCodesIOS');
  }
  throw PlatformException(
      code: _platform.operatingSystem, message: "platform not supported");
}