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