copyWith method
Implementation
ToggleForumTopicIsPinned copyWith({
int? chatId,
int? messageThreadId,
bool? isPinned,
}) =>
ToggleForumTopicIsPinned(
chatId: chatId ?? this.chatId,
messageThreadId: messageThreadId ?? this.messageThreadId,
isPinned: isPinned ?? this.isPinned,
);