copyWith method

SetDirectMessagesChatTopicIsMarkedAsUnread copyWith({
  1. int? chatId,
  2. int? topicId,
  3. bool? isMarkedAsUnread,
})

Implementation

SetDirectMessagesChatTopicIsMarkedAsUnread copyWith({
  int? chatId,
  int? topicId,
  bool? isMarkedAsUnread,
}) => SetDirectMessagesChatTopicIsMarkedAsUnread(
  chatId: chatId ?? this.chatId,
  topicId: topicId ?? this.topicId,
  isMarkedAsUnread: isMarkedAsUnread ?? this.isMarkedAsUnread,
);