copyWithWrapped method

ArrayJsonSchemaPropertyInput copyWithWrapped({
  1. Wrapped<String?>? type,
  2. Wrapped<String?>? description,
  3. Wrapped? items,
})

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));
}