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