JSON Map To List <Map << String, Object >>
I have json format
[{ "id" : "a01", "name" : "random1", "val" : "random2" }, { "id" : "a03", "name" : "random3", "val" : "random4" }]
I need to hide the list of cards. So how can I get the same thing? Even though I can convert it to a list of strings, so that each string is of the form
{ "id" : "a01", "name" : "random1", "val" : "random2" }
I have a way to convert it to a map. So how do you retrieve such a list of strings?
+3
source share