name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 2:
return 'HANDLE_ALL_URLS';
case 1:
return 'USE_AS_ORIGIN';
}
return _value.toString();
}
Gets the name of the value.
String name() {
switch (_value) {
case 2:
return 'HANDLE_ALL_URLS';
case 1:
return 'USE_AS_ORIGIN';
}
return _value.toString();
}