copyWith method
Implementation
PairwiseComparisonInput copyWith({
int? preferenceValue,
bool? isLeftMoreImportant,
}) =>
PairwiseComparisonInput(
id: id,
left: left,
right: right,
preferenceValue: preferenceValue ?? this.preferenceValue,
isLeftMoreImportant: isLeftMoreImportant ?? this.isLeftMoreImportant,
);