convertToEnumCallChoose function

CallChoose convertToEnumCallChoose(
  1. String type
)

Implementation

CallChoose convertToEnumCallChoose(String type) {
  switch (type) {
    case "video":
      return CallChoose.videoCall;
    case "audio":
      return CallChoose.audioCall;
    case "chat":
      return CallChoose.chat;
    default:
      return CallChoose.chat;
  }
}