decodeJSON function

dynamic decodeJSON(
  1. String rawJson
)

Implementation

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