ContentCreateSpaceMetadata.fromJson constructor
Implementation
factory ContentCreateSpaceMetadata.fromJson(Map<String, Object?> json) {
return ContentCreateSpaceMetadata(
labels: json[r'labels'] != null
? LabelArray.fromJson(json[r'labels']! as Map<String, Object?>)
: null,
expandable: json[r'_expandable'] as Map<String, Object?>?,
);
}