TencentCloudChatInitOptions constructor

const TencentCloudChatInitOptions({
  1. required int sdkAppID,
  2. required String userID,
  3. required String userSig,
  4. @Deprecated('Please use `onTencentCloudChatSDKEvent` from the `callbacks` field within `TencentCloudChatCallbacks` when calling `initUIKit` instead.') V2TimSDKListener? sdkListener,
})

Constructor for TencentCloudChatInitOptions.

sdkAppID: The Chat SDKAppID. userID: The user ID for the Chat SDK. userSig: The user signature for the Chat SDK.

Implementation

const TencentCloudChatInitOptions({
  required this.sdkAppID,
  required this.userID,
  required this.userSig,
  @Deprecated(
      'Please use `onTencentCloudChatSDKEvent` from the `callbacks` field within `TencentCloudChatCallbacks` when calling `initUIKit` instead.')
  this.sdkListener,
});