copyWith method

ElicitationUrlModeRequest copyWith({
  1. Object? elicitationId = _acpCopyWithAbsent,
  2. Object? url = _acpCopyWithAbsent,
  3. Object? requestId = _acpCopyWithAbsent,
})

Implementation

ElicitationUrlModeRequest copyWith({
  Object? elicitationId = _acpCopyWithAbsent,
  Object? url = _acpCopyWithAbsent,
  Object? requestId = _acpCopyWithAbsent,
}) => ElicitationUrlModeRequest(
  elicitationId: identical(elicitationId, _acpCopyWithAbsent)
      ? this.elicitationId
      : elicitationId as ElicitationId,
  url: identical(url, _acpCopyWithAbsent) ? this.url : url as String,
  requestId: identical(requestId, _acpCopyWithAbsent)
      ? this.requestId
      : requestId as RequestId,
);