decodeJSON function

dynamic decodeJSON (
  1. String rawJson
)

Implementation

dynamic decodeJSON(String rawJson) {
  return convert.json.decode(rawJson);
}