tealeafSessionId property

Future<String> tealeafSessionId

Implementation

static Future<String> get tealeafSessionId async {
  try {
    final String sessionId =
        await _channel.invokeMethod('getTealeafSessionId');
    tlLogger.v("Tealeaf sessionId: $sessionId");
    return sessionId;
  } on PlatformException catch (pe) {
    throw TealeafException(pe,
        msg: 'Unable to process Tealeaf request sessionId message!');
  }
}