commandSet property

CommandSetDefinition? commandSet

Implementation

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

Implementation

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

  _commandSet = commandSet;
}