logAccountUnlink method

  1. @override
Future<void> logAccountUnlink(
  1. String type
)
override

Implementation

@override
Future<void> logAccountUnlink(String type) async {
  try {
    await _logLinkingChannel.invokeMethod(
        SuperfineSdkChannelMethods.logAccountUnlink, {'type': type});
  } catch (e) {
    print("Error logging account unlink: $e");
  }
}