ProgressStyler constructor
ProgressStyler({
- BoxStyler? container,
- BoxStyler? track,
- BoxStyler? indicator,
- BoxStyler? trackContainer,
- RemixBoxEffectsMix? trackEffects,
- RemixBoxEffectsMix? indicatorEffects,
- AnimationConfig? animation,
- WidgetModifierConfig? modifier,
- List<
VariantStyle< ? variants,ProgressSpec> >
Implementation
ProgressStyler({
BoxStyler? container,
BoxStyler? track,
BoxStyler? indicator,
BoxStyler? trackContainer,
RemixBoxEffectsMix? trackEffects,
RemixBoxEffectsMix? indicatorEffects,
AnimationConfig? animation,
WidgetModifierConfig? modifier,
List<VariantStyle<ProgressSpec>>? variants,
}) : this.create(
container: Prop.maybeMix(container),
track: Prop.maybeMix(track),
indicator: Prop.maybeMix(indicator),
trackContainer: Prop.maybeMix(trackContainer),
trackEffects: Prop.maybeMix(trackEffects),
indicatorEffects: Prop.maybeMix(indicatorEffects),
variants: variants,
modifier: modifier,
animation: animation,
);