copyWith method

UpdateChatViewAsTopics copyWith({
  1. int? chatId,
  2. bool? viewAsTopics,
})

Implementation

UpdateChatViewAsTopics copyWith({int? chatId, bool? viewAsTopics}) =>
    UpdateChatViewAsTopics(
      chatId: chatId ?? this.chatId,
      viewAsTopics: viewAsTopics ?? this.viewAsTopics,
    );