commandSet property

CommandSetDefinition? get commandSet

Implementation

CommandSetDefinition? get commandSet => _commandSet;
set commandSet (CommandSetDefinition? commandSet)

Implementation

set commandSet(CommandSetDefinition? commandSet) {
  if (!_mutable) {
    throw UnsupportedError('Cannot modify unmodifiable ArgumentSet');
  }

  _commandSet = commandSet;
}