toFeedbackValueType method

FeedbackValueType toFeedbackValueType()

Implementation

FeedbackValueType toFeedbackValueType() {
  switch (this) {
    case 'Valid':
      return FeedbackValueType.valid;
    case 'Invalid':
      return FeedbackValueType.invalid;
  }
  throw Exception('$this is not known in enum FeedbackValueType');
}