copyWith method

ArrayJsonSchemaPropertyOutput copyWith({
  1. String? type,
  2. String? description,
  3. dynamic items,
})

Implementation

ArrayJsonSchemaPropertyOutput copyWith(
    {String? type, String? description, dynamic items}) {
  return ArrayJsonSchemaPropertyOutput(
      type: type ?? this.type,
      description: description ?? this.description,
      items: items ?? this.items);
}