getSessionHostName method

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

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