sessionId property

Future<String> sessionId

Implementation

static Future<String> get sessionId async {
  try {
    return await _channel.invokeMethod('getBehaviourSessionId');
  } on PlatformException catch (e) {
    throw e;
  }
}