SurveyProgressConfiguration constructor

SurveyProgressConfiguration({
  1. bool showProgressbar = true,
  2. Color progressbarColor = Colors.white,
  3. double height = 6.0,
  4. EdgeInsets padding = const EdgeInsets.symmetric(horizontal: 24.0),
  5. bool showLabel = false,
  6. BorderRadius? borderRadius,
  7. Widget label(
    1. String from,
    2. String to
    )?,
  8. Color? backgroundColor,
  9. Color? valueProgressbarColor,
})

Implementation

SurveyProgressConfiguration({
  this.showProgressbar = true,
  this.progressbarColor = Colors.white,
  this.height = 6.0,
  this.padding = const EdgeInsets.symmetric(horizontal: 24.0),
  this.showLabel = false,
  this.borderRadius,
  this.label,
  this.backgroundColor,
  this.valueProgressbarColor,
});