copyWith method
Implementation
SessionConfigSelectOption copyWith({
Object? value = _acpCopyWithAbsent,
Object? name = _acpCopyWithAbsent,
Object? description = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => SessionConfigSelectOption(
value: identical(value, _acpCopyWithAbsent)
? this.value
: value as SessionConfigValueId,
name: identical(name, _acpCopyWithAbsent) ? this.name : name as String,
description: identical(description, _acpCopyWithAbsent)
? this.description
: description as String?,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);