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