copyWith method

DeleteDirectMessagesChatTopicHistory copyWith({
  1. int? chatId,
  2. int? topicId,
})

Implementation

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