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