updateKakaoSubscriptions method
Implementation
@override
Future<void> updateKakaoSubscriptions(
HackleSubscriptionOperations operations) async {
try {
final Map<String, Object?> arguments = {
Argument.operations.value: operations.toMap(),
};
return methodChannel.invokeMethod(
Method.updateKakaoSubscriptions.value, arguments);
} catch (e) {
log("Failed to updateKakaoSubscriptions", level: 3, error: e);
}
}