ProgressBar constructor

const ProgressBar(
  1. {Key? key,
  2. required num totalAmount,
  3. required num progressAmount,
  4. double? height,
  5. double? width,
  6. double? stripeWidth,
  7. double? stripeSpacing,
  8. Color color = const Color.fromARGB(255, 144, 231, 124)}
)

Implementation

const ProgressBar({
  super.key,
  required this.totalAmount,
  required this.progressAmount,
  this.height,
  this.width,
  this.stripeWidth,
  this.stripeSpacing,
  this.color = const Color.fromARGB(255, 144, 231, 124),
});