copyWith method

ContentPropertyUpdateVersion copyWith({
  1. dynamic number,
  2. bool? minorEdit,
})

Implementation

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