ContentUpdateAncestorsItem.fromJson constructor

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

Implementation

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