copyWith method
Implementation
SessionConfigSelectGroup copyWith({
Object? group = _acpCopyWithAbsent,
Object? name = _acpCopyWithAbsent,
Object? options = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => SessionConfigSelectGroup(
group: identical(group, _acpCopyWithAbsent)
? this.group
: group as SessionConfigGroupId,
name: identical(name, _acpCopyWithAbsent) ? this.name : name as String,
options: identical(options, _acpCopyWithAbsent)
? this.options
: options as List<SessionConfigSelectOption>,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);