getChatType method

String getChatType()

Implementation

String getChatType() {
  return (isGroupProfile ?? false)
      ? Constants.typeGroupChat
      : Constants.typeChat;
}