NiceProfileStats constructor

const NiceProfileStats({
  1. Key? key,
  2. required List<NiceStatItem> stats,
  3. Axis direction = Axis.horizontal,
  4. bool expanded = false,
  5. void onStatTap(
    1. NiceStatItem stat
    )?,
})

Implementation

const NiceProfileStats({
  super.key,
  required this.stats,
  this.direction = Axis.horizontal,
  this.expanded = false,
  this.onStatTap,
});