commands property
Set<VoiceCommand>
get
commands
Implementation
Set<VoiceCommand> get commands => _commands;
set
commands
(Set<VoiceCommand> value)
Implementation
set commands(Set<VoiceCommand> value) {
if (_isVisible) {
_removeCommands();
}
_commands = value;
if (_isVisible) {
_addCommands();
}
}