PointsRow constructor

const PointsRow({
  1. Key? key,
  2. required List<PointsRowItem> points,
  3. double pointSize = 8,
  4. double textGap = 3,
  5. double pointTopPadding = 0,
})

Implementation

const PointsRow({
  super.key,
  required this.points,
  this.pointSize = 8,
  this.textGap = 3,
  this.pointTopPadding = 0,
});