ProgressStyler constructor

ProgressStyler({
  1. BoxStyler? container,
  2. BoxStyler? track,
  3. BoxStyler? indicator,
  4. BoxStyler? trackContainer,
  5. RemixBoxEffectsMix? trackEffects,
  6. RemixBoxEffectsMix? indicatorEffects,
  7. AnimationConfig? animation,
  8. WidgetModifierConfig? modifier,
  9. List<VariantStyle<ProgressSpec>>? variants,
})

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,
     );