copyWith method
Implementation
MessageChecklistTasksDone copyWith({
int? checklistMessageId,
List<int>? markedAsDoneTaskIds,
List<int>? markedAsNotDoneTaskIds,
}) => MessageChecklistTasksDone(
checklistMessageId: checklistMessageId ?? this.checklistMessageId,
markedAsDoneTaskIds: markedAsDoneTaskIds ?? this.markedAsDoneTaskIds,
markedAsNotDoneTaskIds:
markedAsNotDoneTaskIds ?? this.markedAsNotDoneTaskIds,
);