copyWith method
TencentCloudAvChatRoomData
copyWith({
- String? loginUserID,
- bool? isSubscribe,
- AnchorInfo? anchorInfo,
- String? avChatRoomID,
- String? notification,
Implementation
TencentCloudAvChatRoomData copyWith({
String? loginUserID,
bool? isSubscribe,
AnchorInfo? anchorInfo,
String? avChatRoomID,
String? notification,
}) {
return TencentCloudAvChatRoomData(
isSubscribe: isSubscribe ?? this.isSubscribe,
anchorInfo: anchorInfo ?? this.anchorInfo,
notification: notification ?? this.notification);
}