getFreshchatUserId property

Future<String> getFreshchatUserId

Get the current user's identifier from Freshchat

Implementation

static Future<String> get getFreshchatUserId async {
  final String userAlias = await _channel.invokeMethod('getFreshchatUserId');
  return userAlias;
}