copyWith method
Implementation
SessionConfigSelect copyWith({
Object? currentValue = _acpCopyWithAbsent,
Object? options = _acpCopyWithAbsent,
}) => SessionConfigSelect(
currentValue: identical(currentValue, _acpCopyWithAbsent)
? this.currentValue
: currentValue as SessionConfigValueId,
options: identical(options, _acpCopyWithAbsent)
? this.options
: options as SessionConfigSelectOptions,
);