getJson method

dynamic getJson()

Implementation

dynamic getJson() {
  var string = getString();
  if (string != null) {
    return json.decode(string);
  }
  return null;
}