PurchaseRestored method

  1. @override
Future<void> PurchaseRestored(
  1. String source
)
override

Implementation

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