CounterRow constructor

const CounterRow({
  1. required List<AnimatedCounter> counters,
  2. String gap = '48px',
  3. Key? key,
})

Implementation

const CounterRow({
  required this.counters,
  this.gap = '48px',
  super.key,
});