copyWith method

CompleteElicitationNotification copyWith({
  1. Object? elicitationId = _acpCopyWithAbsent,
  2. Object? meta = _acpCopyWithAbsent,
})

Implementation

CompleteElicitationNotification copyWith({
  Object? elicitationId = _acpCopyWithAbsent,
  Object? meta = _acpCopyWithAbsent,
}) => CompleteElicitationNotification(
  elicitationId: identical(elicitationId, _acpCopyWithAbsent)
      ? this.elicitationId
      : elicitationId as ElicitationId,
  meta: identical(meta, _acpCopyWithAbsent) ? this.meta : meta as AcpJsonMap?,
);