name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 'CHILD':
return 'CHILD';
case 'TABBED':
return 'TABBED';
case 'WINDOW':
return 'WINDOW';
}
return _value.toString();
}
Gets the name of the value.
String name() {
switch (_value) {
case 'CHILD':
return 'CHILD';
case 'TABBED':
return 'TABBED';
case 'WINDOW':
return 'WINDOW';
}
return _value.toString();
}