copyWith method

ToggleForumTopicIsPinned copyWith({
  1. int? chatId,
  2. int? messageThreadId,
  3. bool? isPinned,
})

Implementation

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