copyWith method

ElicitationContentValueNumber copyWith({
  1. Object? value = _acpCopyWithAbsent,
})

Implementation

ElicitationContentValueNumber copyWith({
  Object? value = _acpCopyWithAbsent,
}) => ElicitationContentValueNumber(
  identical(value, _acpCopyWithAbsent) ? this.value : value as num,
);