ContentPropertyUpdateVersion.fromJson constructor

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

Implementation

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