ProgressIndicatorThemeData constructor

const ProgressIndicatorThemeData({
  1. Color? color,
  2. Color? linearTrackColor,
  3. double? linearMinHeight,
  4. Color? circularTrackColor,
  5. Color? refreshBackgroundColor,
  6. BorderRadiusGeometry? borderRadius,
  7. Color? stopIndicatorColor,
  8. double? stopIndicatorRadius,
  9. double? strokeWidth,
  10. double? strokeAlign,
  11. StrokeCap? strokeCap,
  12. BoxConstraints? constraints,
  13. double? trackGap,
  14. EdgeInsetsGeometry? circularTrackPadding,
  15. @Deprecated('Use ProgressIndicatorTheme to customize the ProgressIndicator appearance. ' 'This feature was deprecated after v3.27.0-0.2.pre.') bool? year2023,
})

Creates the set of properties used to configure ProgressIndicator widgets.

Implementation

const ProgressIndicatorThemeData({
  this.color,
  this.linearTrackColor,
  this.linearMinHeight,
  this.circularTrackColor,
  this.refreshBackgroundColor,
  this.borderRadius,
  this.stopIndicatorColor,
  this.stopIndicatorRadius,
  this.strokeWidth,
  this.strokeAlign,
  this.strokeCap,
  this.constraints,
  this.trackGap,
  this.circularTrackPadding,
  @Deprecated(
    'Use ProgressIndicatorTheme to customize the ProgressIndicator appearance. '
    'This feature was deprecated after v3.27.0-0.2.pre.',
  )
  this.year2023,
});