ContentBlueprintDraftAncestorsItem.fromJson constructor

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

Implementation

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