ContentPropertyUpdateVersion.fromJson constructor
Implementation
factory ContentPropertyUpdateVersion.fromJson(Map<String, Object?> json) {
return ContentPropertyUpdateVersion(
number: json[r'number'],
minorEdit: json[r'minorEdit'] as bool? ?? false,
);
}