SlotCounterRowProps constructor

const SlotCounterRowProps({
  1. required List<SlotCounterProps> counters,
  2. String gap = '2rem',
  3. bool wrap = true,
  4. String justifyContent = 'center',
})

Implementation

const SlotCounterRowProps({
  required this.counters,
  this.gap = '2rem',
  this.wrap = true,
  this.justifyContent = 'center',
});