copyWith method

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

Implementation

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