copyWith method
Implementation
CreateChatSessionRequest copyWith({String? userId, int? taskId}) {
return CreateChatSessionRequest(
userId: userId ?? this.userId, taskId: taskId ?? this.taskId);
}
CreateChatSessionRequest copyWith({String? userId, int? taskId}) {
return CreateChatSessionRequest(
userId: userId ?? this.userId, taskId: taskId ?? this.taskId);
}