json property

dynamic json

Implementation

dynamic get json {
  if (_json == null) return null;
  if (_json is Map) return Map.unmodifiable(_json as Map<dynamic, dynamic>);
  if (_json is List) return List.unmodifiable(_json as Iterable<dynamic>);
  return _json;
}