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