setCustomUserId method

  1. @override
Future<void> setCustomUserId(
  1. String customUserId
)
override

Implementation

@override
Future<void> setCustomUserId(String customUserId) async {
  try {
    await _configChannel.invokeMethod(
        SuperfineSdkChannelMethods.setCustomUserId,
        {'customUserId': customUserId});
  } catch (e) {
    print("Error setting custom user ID: $e");
  }
}