copyWith method

GetChatMessageByDate copyWith({
  1. int? chatId,
  2. int? date,
})

Implementation

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