copyWith method

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

Implementation

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