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