FDeterminateProgressStyle constructor

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

Implementation

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