copyWith method

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

Implementation

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