name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 1:
return 'CANCELED_LOGIN';
case 3:
return 'PRESENTATION_CONTEXT_INVALID';
case 2:
return 'PRESENTATION_CONTEXT_NOT_PROVIDED';
}
return _value.toString();
}