copyWith method
Implementation
DeleteChatFolder copyWith({
int? chatFolderId,
List<int>? leaveChatIds,
}) =>
DeleteChatFolder(
chatFolderId: chatFolderId ?? this.chatFolderId,
leaveChatIds: leaveChatIds ?? this.leaveChatIds,
);