name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 1:
return 'DONT_RESEND';
case 0:
return 'RESEND';
}
return _value.toString();
}
Gets the name of the value.
String name() {
switch (_value) {
case 1:
return 'DONT_RESEND';
case 0:
return 'RESEND';
}
return _value.toString();
}