logAccountLink method

  1. @override
Future<void> logAccountLink(
  1. String id,
  2. String type, {
  3. String? scopeId,
  4. String? scopeType,
})
override

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");
  }
}