name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'CANCEL';
case 1:
return 'PROCEED';
case 2:
return 'USE_SAVED_HTTP_AUTH_CREDENTIALS';
}
return _value.toString();
}