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