name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 'NARROW_COLUMNS':
return 'NARROW_COLUMNS';
case 'NORMAL':
return 'NORMAL';
case 'TEXT_AUTOSIZING':
return 'TEXT_AUTOSIZING';
}
return _value.toString();
}