I've below List<Map>
as below
List<Map<String,String>> list =
{"key1":"1234"}
{"key1":"3422"}
{"key1":"7565"}
{"key2":"foo"}
{"key2":"bar"}
{"key3":"xyz"}
{"key4":"pqr"}
I need to convert it to a Map<String, List> as
{"key1":"1234","3422","7565"}
{"key2":"foo","bar"}
{"key3":"xyz"}
{"key4":"pqr"}