copyWith method
Implementation
CreateElicitationResponseDecline copyWith({
Object? meta = _acpCopyWithAbsent,
Object? action = _acpCopyWithAbsent,
}) => CreateElicitationResponseDecline(
meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
action: identical(action, _acpCopyWithAbsent)
? this.action
: action as String,
);