PurchaseRestored method
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}");
}
}