command property
Command
get
command
A {@link Command} this code action executes.
If this command throws an exception, the editor displays the exception message to users in the editor at the current cursor position.
Implementation
_i3.Command get command => _i5.getProperty(
this,
'command',
);
set
command
(Command value)
Implementation
set command(_i3.Command value) {
_i5.setProperty(
this,
'command',
value,
);
}