copyWith method

GetDirectMessagesChatTopicMessageByDate copyWith({
  1. int? chatId,
  2. int? topicId,
  3. int? date,
})

Implementation

GetDirectMessagesChatTopicMessageByDate copyWith({
  int? chatId,
  int? topicId,
  int? date,
}) => GetDirectMessagesChatTopicMessageByDate(
  chatId: chatId ?? this.chatId,
  topicId: topicId ?? this.topicId,
  date: date ?? this.date,
);