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