StatCardRow constructor

const StatCardRow({
  1. required List<StatCard> cards,
  2. int columns = 4,
  3. double gap = 24,
  4. Key? key,
})

Implementation

const StatCardRow({
  required this.cards,
  this.columns = 4,
  this.gap = 24,
  super.key,
});