copyWith method

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

Implementation

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