toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case FeedbackValueType.valid:
      return 'Valid';
    case FeedbackValueType.invalid:
      return 'Invalid';
  }
}