sessionId property

Future<String> get sessionId

Implementation

static Future<String> get sessionId async {
  try {
    return await _channel.invokeMethod('getSessionID') ?? "";
  } catch (e, s) {
    _internalLog("getSessionID failed", e, s);
    return "";
  }
}