ContentBlueprintDraftVersion.fromJson constructor

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

Implementation

factory ContentBlueprintDraftVersion.fromJson(Map<String, Object?> json) {
  return ContentBlueprintDraftVersion(
    number: (json[r'number'] as num?)?.toInt() ?? 0,
  );
}