FProgressStyle constructor

const FProgressStyle({
  1. required BoxDecoration backgroundDecoration,
  2. required BoxDecoration progressDecoration,
  3. required BoxConstraints constraints,
  4. required Duration animationDuration,
  5. required Curve curve,
})

Creates a FProgressStyle.

Implementation

const FProgressStyle({
  required this.backgroundDecoration,
  required this.progressDecoration,
  required this.constraints,
  required this.animationDuration,
  required this.curve,
});