CheckPoint constructor

const CheckPoint({
  1. Key? key,
  2. required int checkedTill,
  3. required List<String> checkPoints,
  4. required Color checkPointFilledColor,
})

Implementation

const CheckPoint({Key? key, required this.checkedTill, required this.checkPoints, required this.checkPointFilledColor,}) : super(key: key);