SpacePropertyExpandable.fromJson constructor
Implementation
factory SpacePropertyExpandable.fromJson(Map<String, Object?> json) {
return SpacePropertyExpandable(
version: json[r'version'] as String?,
space: json[r'space'] as String?,
);
}