logWalletLink method
Implementation
@override
Future<void> logWalletLink(String wallet, {String type = "ethereum"}) async {
try {
await _logRevenueChannel.invokeMethod(
SuperfineSdkChannelMethods.logWalletLink,
{'wallet': wallet, 'type': type});
} catch (e) {
print("Error linking wallet: $e");
}
}