copyWith method

JsonTypeBean copyWith({
  1. Map<String, dynamic>? configuration,
  2. String? custom,
  3. int? customId,
  4. String? items,
  5. String? system,
  6. String? type,
})

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