InAppPurchaseSuccess method

  1. @override
Future<void> InAppPurchaseSuccess()
override

Implementation

@override
Future<void> InAppPurchaseSuccess() async {
  try {
    await methodChannel.invokeMethod('InAppPurchaseSuccess');
  } on PlatformException catch (e) {
    print("Failed to call InAppPurchaseSuccess: ${e.message}");
  }
}