copyWith method

MultiSelectItemsString copyWith({
  1. Object? type = _acpCopyWithAbsent,
  2. Object? enumValue = _acpCopyWithAbsent,
  3. Object? meta = _acpCopyWithAbsent,
})

Implementation

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