gsonDecode function

dynamic gsonDecode (String str)

Decode gson

gsonDecode("{hello: "world"}") // >> Map {"hello": "world"}

Implementation

dynamic gsonDecode(String str) { return gson.decode(str); }