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