StatCardRow constructor

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

Implementation

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