copyWith method

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

Implementation

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