copyWith method

CreateElicitationResponseDecline copyWith({
  1. Object? meta = _acpCopyWithAbsent,
  2. Object? action = _acpCopyWithAbsent,
})

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