convertToNEChatroomType function

NEChatroomType convertToNEChatroomType(
  1. ChatroomType type
)

Implementation

NEChatroomType convertToNEChatroomType(ChatroomType type) {
  switch (type) {
    case ChatroomType.common:
      return NEChatroomType.common;
    case ChatroomType.waitingRoom:
      return NEChatroomType.waitingRoom;
  }
}