notifyCommandLine method

  1. @protected
  2. @visibleForTesting
void notifyCommandLine(
  1. List<String> args
)

Notify all the remote command-line argument listeners.

Implementation

@protected
@visibleForTesting
void notifyCommandLine(List<String> args) {
  _commandLine = args;
  final listeners = List.of(_commandLineListeners);
  for (final listener in listeners) {
    listener(args);
  }
}