convertGroupTypeToWeb static method

String convertGroupTypeToWeb(
  1. String type
)

Implementation

static String convertGroupTypeToWeb(String type) {
  if (type == GroupType.Work) {
    return GRP_WORK;
  }

  if (type == GroupType.Public) {
    return GRP_PUBLIC;
  }

  if (type == GroupType.AVChatRoom) {
    return GRP_AVCHATROOM;
  }

  if (type == GroupType.Meeting) {
    return GRP_MEETING;
  }

  if (type == GroupType.Community) {
    return GRP_COMMUNITY;
  }

  return '';
}