copyWith method

ProcessChatFolderNewChats copyWith({
  1. int? chatFolderId,
  2. List<int>? addedChatIds,
})

Implementation

ProcessChatFolderNewChats copyWith({
  int? chatFolderId,
  List<int>? addedChatIds,
}) =>
    ProcessChatFolderNewChats(
      chatFolderId: chatFolderId ?? this.chatFolderId,
      addedChatIds: addedChatIds ?? this.addedChatIds,
    );