copyWith method
Implementation
DeleteDirectMessagesChatTopicMessagesByDate copyWith({
int? chatId,
int? topicId,
int? minDate,
int? maxDate,
}) => DeleteDirectMessagesChatTopicMessagesByDate(
chatId: chatId ?? this.chatId,
topicId: topicId ?? this.topicId,
minDate: minDate ?? this.minDate,
maxDate: maxDate ?? this.maxDate,
);