FProgressStyle constructor

const FProgressStyle({
  1. required BoxDecoration backgroundDecoration,
  2. required BoxDecoration progressDecoration,
  3. BoxConstraints constraints = const BoxConstraints(minHeight: 15.0, maxHeight: 15.0),
  4. Duration animationDuration = const Duration(milliseconds: 500),
  5. Curve curve = Curves.ease,
})

Creates a FProgressStyle.

Implementation

const FProgressStyle({
  required this.backgroundDecoration,
  required this.progressDecoration,
  this.constraints = const BoxConstraints(minHeight: 15.0, maxHeight: 15.0),
  this.animationDuration = const Duration(milliseconds: 500),
  this.curve = Curves.ease,
});