Json property

Object Json

Implementation

Object get Json {
  var value = jsonDecode(this);

  if(value is! List)
    return Map<String,dynamic>.from(value);

  return value;
}