copyWith method
KoiLabelSetupElement
copyWith({})
Implementation
KoiLabelSetupElement copyWith({
int? widthMm,
int? heightMm,
int? gapMm,
int? dpi,
int? density,
double? speed,
int? referenceX,
int? referenceY,
String? codepage,
}) {
return KoiLabelSetupElement(
widthMm: widthMm ?? this.widthMm,
heightMm: heightMm ?? this.heightMm,
gapMm: gapMm ?? this.gapMm,
dpi: dpi ?? this.dpi,
density: density ?? this.density,
speed: speed ?? this.speed,
referenceX: referenceX ?? this.referenceX,
referenceY: referenceY ?? this.referenceY,
codepage: codepage ?? this.codepage,
);
}