SpaceDescriptionValue.fromJson constructor
Implementation
factory SpaceDescriptionValue.fromJson(Map<String, Object?> json) {
return SpaceDescriptionValue(
plain: json[r'plain'] != null
? SpaceDescription.fromJson(json[r'plain']! as Map<String, Object?>)
: null,
view: json[r'view'] != null
? SpaceDescription.fromJson(json[r'view']! as Map<String, Object?>)
: null,
expandable: json[r'_expandable'] != null
? SpaceDescriptionValueExpandable.fromJson(
json[r'_expandable']! as Map<String, Object?>)
: null,
);
}