copyWith method

BarcodeInfo copyWith({
  1. String? ai,
  2. String? value,
  3. String? description,
})

Implementation

BarcodeInfo copyWith({
  String? ai,
  String? value,
  String? description,
}) {
  return BarcodeInfo(
    ai: ai ?? this.ai,
    value: value ?? this.value,
    description: description ?? this.description,
  );
}