copyWith method

CreateElicitationResponseAccept copyWith({
  1. Object? meta = _acpCopyWithAbsent,
  2. Object? action = _acpCopyWithAbsent,
  3. Object? content = _acpCopyWithAbsent,
})

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