getSessionID method

  1. @override
Future<String?> getSessionID()

Get the session Id Note: Only the host can get the session Id.
Return session id

Implementation

@override
Future<String?> getSessionID() async {
  return await methodChannel
      .invokeMethod<String?>('getSessionID')
      .then<String?>((String? value) => value);
}