getRequestSubSessionName method

  1. @override
Future<String> getRequestSubSessionName()

Get the name of the sub-session where help is requested.
Return the sub-session name as a string.

Implementation

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