PrintColumn constructor
const
PrintColumn({})
Creates a new print column.
text: The text content of the columnx: X position (0-576, matching printer width)align: Text alignment within the columnfontSize: Font size in pointsfontWeight: Font weight (normal, bold, etc.)fontFamily: Font family to usecolor: Text color
Implementation
const PrintColumn({
required this.text,
required this.x,
this.align = TextAlign.left,
this.fontSize = 24,
this.fontWeight = FontWeight.normal,
this.fontFamily = 'Siemreap',
this.color = Colors.black,
});