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