name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'MENU_ITEM_NONE';
case 4:
return 'MENU_ITEM_PROCESS_TEXT';
case 1:
return 'MENU_ITEM_SHARE';
case 2:
return 'MENU_ITEM_WEB_SEARCH';
}
return _value.toString();
}