FLinearProgressStyle constructor

const FLinearProgressStyle({
  1. required BoxDecoration backgroundDecoration,
  2. required BoxDecoration progressDecoration,
  3. BoxConstraints constraints = const BoxConstraints.tightFor(height: 10.0),
  4. Curve curve = Curves.ease,
})

Implementation

const FLinearProgressStyle({
  required this.backgroundDecoration,
  required this.progressDecoration,
  this.constraints = const BoxConstraints.tightFor(height: 10.0),
  this.curve = Curves.ease,
});