getStringFromHMSPollCategory static method

String getStringFromHMSPollCategory(
  1. HMSPollCategory hmsPollCategory
)

Implementation

static String getStringFromHMSPollCategory(HMSPollCategory hmsPollCategory) {
  switch (hmsPollCategory) {
    case HMSPollCategory.poll:
      return "poll";
    case HMSPollCategory.quiz:
      return "quiz";
    default:
      return "poll";
  }
}