getSessionID method
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);
}