FProgressStyle constructor

const FProgressStyle({
  1. required BoxDecoration trackDecoration,
  2. required BoxDecoration fillDecoration,
  3. BoxConstraints constraints = const BoxConstraints.tightFor(height: 10.0),
  4. FProgressMotion motion = const FProgressMotion(),
})

Creates a FProgressStyle.

Implementation

const FProgressStyle({
  required this.trackDecoration,
  required this.fillDecoration,
  this.constraints = const BoxConstraints.tightFor(height: 10.0),
  this.motion = const FProgressMotion(),
});