copyWith method
Implementation
JsonTypeBean copyWith(
{String? type,
String? items,
String? system,
String? custom,
int? customId,
Map<String, dynamic>? configuration}) {
return JsonTypeBean(
type: type ?? this.type,
items: items ?? this.items,
system: system ?? this.system,
custom: custom ?? this.custom,
customId: customId ?? this.customId,
configuration: configuration ?? this.configuration,
);
}