getSessionId property

Future<String> getSessionId

Implementation

static Future<String> get getSessionId async {
  try{
    final String getSessionId = await _channel.invokeMethod('getSessionId');
    return getSessionId;
  } catch (e) {
    throw(e.toString());
  }
}