getChatType method

String getChatType()

Implementation

String getChatType() {
  return (isGroup.checkNull())
      ? Constants.typeGroupChat
      : (isBroadCast.checkNull())
          ? Constants.typeBroadcastChat
          : Constants.typeChat;
}