gsonDecode function

dynamic gsonDecode(
  1. String str
)

Decode gson

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

Implementation

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