convertToEnumCallChoose function
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;
}
}