getSessionHostName method
Get the host's name.
Return host user name
Implementation
@override
Future<String?> getSessionHostName() async {
return await methodChannel
.invokeMethod<String?>('getSessionHostName')
.then<String?>((String? value) => value);
}