copyWith method

GetChatFolderChatsToLeave copyWith({
  1. int? chatFolderId,
})

Implementation

GetChatFolderChatsToLeave copyWith({
  int? chatFolderId,
}) =>
    GetChatFolderChatsToLeave(
      chatFolderId: chatFolderId ?? this.chatFolderId,
    );