copyWithWrapped method
Implementation
ArrayJsonSchemaPropertyOutput copyWithWrapped(
{Wrapped<String?>? type,
Wrapped<String?>? description,
Wrapped<dynamic>? items}) {
return ArrayJsonSchemaPropertyOutput(
type: (type != null ? type.value : this.type),
description:
(description != null ? description.value : this.description),
items: (items != null ? items.value : this.items));
}