CometChatCallsException.userAuthTokenNull constructor

CometChatCallsException.userAuthTokenNull()

Creates a CometChatCallsException for user auth token null error.

Implementation

factory CometChatCallsException.userAuthTokenNull() {
  return CometChatCallsException(
    ErrorCodeConstants.codeUserAuthTokenNull,
    ErrorMessageConstants.messageCodeUserAuthTokenNull,
    ErrorDetailConstants.detailAuthTokenNull,
  );
}