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