TencentCloudChatInitOptions constructor
const
TencentCloudChatInitOptions({
- required int sdkAppID,
- required String userID,
- required String userSig,
- @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,
});