copyWith method

ElicitationFormModeRequest copyWith({
  1. Object? requestedSchema = _acpCopyWithAbsent,
  2. Object? requestId = _acpCopyWithAbsent,
})

Implementation

ElicitationFormModeRequest copyWith({
  Object? requestedSchema = _acpCopyWithAbsent,
  Object? requestId = _acpCopyWithAbsent,
}) => ElicitationFormModeRequest(
  requestedSchema: identical(requestedSchema, _acpCopyWithAbsent)
      ? this.requestedSchema
      : requestedSchema as ElicitationSchema,
  requestId: identical(requestId, _acpCopyWithAbsent)
      ? this.requestId
      : requestId as RequestId,
);