SurveyProgressConfiguration constructor

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

Implementation

SurveyProgressConfiguration({
  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,
});