copyWith method
Implementation
ContentPropertyUpdateVersion copyWith({dynamic number, bool? minorEdit}) {
return ContentPropertyUpdateVersion(
number: number ?? this.number,
minorEdit: minorEdit ?? this.minorEdit,
);
}
ContentPropertyUpdateVersion copyWith({dynamic number, bool? minorEdit}) {
return ContentPropertyUpdateVersion(
number: number ?? this.number,
minorEdit: minorEdit ?? this.minorEdit,
);
}