copyWith method
Implementation
ToggleChatIsPinned copyWith({
  ChatList? chatList,
  int? chatId,
  bool? isPinned,
}) => ToggleChatIsPinned(
  chatList: chatList ?? this.chatList,
  chatId: chatId ?? this.chatId,
  isPinned: isPinned ?? this.isPinned,
);