ContentBlueprintDraftSpace.fromJson constructor

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

Implementation

factory ContentBlueprintDraftSpace.fromJson(Map<String, Object?> json) {
  return ContentBlueprintDraftSpace(
    key: json[r'key'] as String? ?? '',
  );
}