ProgressIndicatorThemeModifier constructor

const ProgressIndicatorThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required ProgressIndicatorThemeData data,
})

Creates a theme that controls the configurations for ProgressIndicator widgets.

Implementation

const ProgressIndicatorThemeModifier({
  super.key,
  super.child,
  super.modifierKey,
  required this.data,
});