copyWith method
Implementation
ContentPropertyVersion copyWith(
{DateTime? when,
String? message,
int? number,
bool? minorEdit,
bool? contentTypeModified}) {
return ContentPropertyVersion(
when: when ?? this.when,
message: message ?? this.message,
number: number ?? this.number,
minorEdit: minorEdit ?? this.minorEdit,
contentTypeModified: contentTypeModified ?? this.contentTypeModified,
);
}