I've an object,
class Object2{
String name;
String id;
Map<String, String> customData;
}
class Object1{
List<Object2> obj1List;
}
I want to convert this customData Map in the List of object1 into one single map, I am ok with over-writing the values if the key already exists.