logAccountLink method
Implementation
@override
Future<void> logAccountLink(String id, String type,
{String? scopeId, String? scopeType}) async {
try {
await _logLinkingChannel.invokeMethod(
SuperfineSdkChannelMethods.logAccountLink,
{'id': id, 'type': type, 'scopeId': scopeId, 'scopeType': scopeType});
} catch (e) {
print("Error logging account link: $e");
}
}