JourneyCircularProgress constructor

const JourneyCircularProgress({
  1. Key? key,
  2. required double percentage,
  3. required Color activeColor,
  4. required Color inactiveColor,
  5. required Color textColor,
  6. double size = 40.0,
  7. double thickness = 4.0,
  8. bool showPercentage = true,
})

Implementation

const JourneyCircularProgress({
  super.key,
  required this.percentage,
  required this.activeColor,
  required this.inactiveColor,
  required this.textColor,
  this.size = 40.0,
  this.thickness = 4.0,
  this.showPercentage = true,
});