toFeedbackKey method

FeedbackKey toFeedbackKey()

Implementation

FeedbackKey toFeedbackKey() {
  switch (this) {
    case 'INSIGHTS_FEEDBACK':
      return FeedbackKey.insightsFeedback;
  }
  throw Exception('$this is not known in enum FeedbackKey');
}