logVKLink method
Implementation
@override
Future<void> logVKLink(String userId) async {
try {
await _logLinkingChannel.invokeMethod(
SuperfineSdkChannelMethods.logVKLink, {'userId': userId});
} catch (e) {
print("Error linking VK account: $e");
}
}