rowItem method
void
rowItem({})
Implementation
void rowItem({
required int qty,
required String name,
required num price,
FontSize size = FontSize.normal,
}) {
// format "qty x price"
final priceText = '$qty x ${formatMoney(price)}';
rowColumns([
col(name, 7, size: size),
colAuto(
priceText,
5,
type: ReceiptTextType.money,
size: size,
),
]);
}