gsonDecode function Null safety
- String str
Decode gson
gsonDecode("{hello: "world"}") // >> Map {"hello": "world"}
Implementation
dynamic gsonDecode(String str) {
return gson.decode(str);
}
Decode gson
gsonDecode("{hello: "world"}") // >> Map {"hello": "world"}
dynamic gsonDecode(String str) {
return gson.decode(str);
}