FProgressStyle constructor

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

Creates a FProgressStyle.

Implementation

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