copyWith method

CreateChatSessionRequest copyWith({
  1. String? userId,
  2. int? taskId,
})

Implementation

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