copyWith method

StringMultiSelectItems copyWith({
  1. Object? enumValue = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

Implementation

StringMultiSelectItems copyWith({
  Object? enumValue = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => StringMultiSelectItems(
  enumValue: identical(enumValue, _acpCopyWithAbsent)
      ? this.enumValue
      : enumValue as List<String>,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);