copyWith method
Implementation
ObjectJsonSchemaPropertyOutput copyWith(
{String? type,
List<String>? required,
String? description,
Map<String, dynamic>? properties}) {
return ObjectJsonSchemaPropertyOutput(
type: type ?? this.type,
required: required ?? this.required,
description: description ?? this.description,
properties: properties ?? this.properties);
}