ContentCreateSpaceMetadata.fromJson constructor

ContentCreateSpaceMetadata.fromJson(
  1. Map<String, Object?> json
)

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?>?,
  );
}