copyWith method
Implementation
TitledMultiSelectItems copyWith({
Object? anyOf = _acpCopyWithAbsent,
Object? meta = _acpCopyWithAbsent,
}) => TitledMultiSelectItems(
anyOf: identical(anyOf, _acpCopyWithAbsent)
? this.anyOf
: anyOf as List<EnumOption>,
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);