toValue method
Implementation
String toValue() {
switch (this) {
case Feedback.useful:
return 'USEFUL';
case Feedback.notUseful:
return 'NOT_USEFUL';
}
}
String toValue() {
switch (this) {
case Feedback.useful:
return 'USEFUL';
case Feedback.notUseful:
return 'NOT_USEFUL';
}
}