ProgressIndicatorThemeData constructor

const ProgressIndicatorThemeData(
  1. {Color? color,
  2. Color? linearTrackColor,
  3. double? linearMinHeight,
  4. Color? circularTrackColor,
  5. Color? refreshBackgroundColor}
)

Creates the set of properties used to configure ProgressIndicator widgets.

Implementation

const ProgressIndicatorThemeData({
  this.color,
  this.linearTrackColor,
  this.linearMinHeight,
  this.circularTrackColor,
  this.refreshBackgroundColor,
});