I have 2 lists with 2 differents Object.
First list ==> data class ObjectA ( val id: String?, val label: String?, val dueDate: LocalDate? )
And Second list ==> data class ObjectB ( val id: String = "", val clientLabel: String = "", val productLabel: String = "", val amount: ColoredAmount )
And I need to filter the ObjectA list with the ID common values between ObjectB List and ObjectA.
I don't find the simple solution.
Thanks very much for your help.
Regards Bomatch