copyWith method
KoiBarcodeElement
copyWith({})
Implementation
KoiBarcodeElement copyWith({
String? data,
KoiBarcodeType? type,
int? height,
int? width,
KoiTextAlign? align,
KoiBarcodeTextPosition? textPosition,
KoiFontType? font,
}) {
return KoiBarcodeElement(
data: data ?? this.data,
type: type ?? this.type,
height: height ?? this.height,
width: width ?? this.width,
align: align ?? this.align,
textPosition: textPosition ?? this.textPosition,
font: font ?? this.font,
);
}