subsystem method

Future<void> subsystem(
  1. String subsystem
)

Implementation

Future<void> subsystem(String subsystem) async {
  await _authenticated.future;

  final channelController = await _openSessionChannel();
  channelController.sendSubsystem(subsystem);
}