abbr property
String
get
abbr
Returns the abbreviation of the rename option.
Implementation
String get abbr {
switch (this) {
case RenameOption.targets:
return 't';
case RenameOption.value:
return 'v';
default:
return '';
}
}