toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case FeedbackType.negative:
      return 'Negative';
    case FeedbackType.positive:
      return 'Positive';
  }
}