cardLayout method
Implementation
Widget cardLayout(BuildContext context) {
//add footer row for totals
return Column(
mainAxisSize: MainAxisSize.min,
children: rows
.map(
(row) => renderCard(row),
)
.toList(),
);
}