copyWithWrapped method
Implementation
ObjectJsonSchemaPropertyOutput copyWithWrapped(
{Wrapped<String?>? type,
Wrapped<List<String>?>? required,
Wrapped<String?>? description,
Wrapped<Map<String, dynamic>?>? properties}) {
return ObjectJsonSchemaPropertyOutput(
type: (type != null ? type.value : this.type),
required: (required != null ? required.value : this.required),
description:
(description != null ? description.value : this.description),
properties: (properties != null ? properties.value : this.properties));
}