copyWith method
Implementation
CreateElicitationResponseAccept copyWith({
Object? meta = _acpCopyWithAbsent,
Object? action = _acpCopyWithAbsent,
Object? content = _acpCopyWithAbsent,
}) => CreateElicitationResponseAccept(
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
action: identical(action, _acpCopyWithAbsent)
? this.action
: action as String,
content: identical(content, _acpCopyWithAbsent)
? this.content
: content as Map<String, ElicitationContentValue>?,
);