CometChatCallsException.platformNotSupported constructor

CometChatCallsException.platformNotSupported()

Creates a CometChatCallsException for platform not supported error.

Implementation

factory CometChatCallsException.platformNotSupported() {
  return CometChatCallsException(
    ErrorCodeConstants.codePlatformNotSupported,
    ErrorMessageConstants.messagePlatformNotSupported,
    ErrorDetailConstants.detailPlatformNotSupported,
  );
}