copyWith method

DogBinding copyWith({
  1. String? name,
  2. String? package,
  3. List<String>? converterNames,
  4. String? converterPackage,
})

Implementation

DogBinding copyWith({
  String? name,
  String? package,
  List<String>? converterNames,
  String? converterPackage,
}) {
  return DogBinding(
    name: name ?? this.name,
    package: package ?? this.package,
    converterNames: converterNames ?? this.converterNames,
    converterPackage: converterPackage ?? this.converterPackage,
  );
}