copyWith method

TitledMultiSelectItems copyWith({
  1. Object? anyOf = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

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?,
);