name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 'AUTOMATIC':
return 'AUTOMATIC';
case 'CLIP':
return 'CLIP';
case 'FIT':
return 'FIT';
}
return _value.toString();
}
Gets the name of the value.
String name() {
switch (_value) {
case 'AUTOMATIC':
return 'AUTOMATIC';
case 'CLIP':
return 'CLIP';
case 'FIT':
return 'FIT';
}
return _value.toString();
}