copyWith method

MessageChecklistTasksDone copyWith({
  1. int? checklistMessageId,
  2. List<int>? markedAsDoneTaskIds,
  3. List<int>? markedAsNotDoneTaskIds,
})

Implementation

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