StripeProgressLoader constructor

const StripeProgressLoader({
  1. Key? key,
  2. double height = 10.0,
  3. double? width,
  4. Color backgroundColor = const Color.fromRGBO(255, 240, 235, 1),
  5. Color stripeColor = const Color.fromRGBO(241, 90, 41, 1.0),
  6. Duration animationDuration = const Duration(milliseconds: 1000),
  7. String? text,
  8. Color? textColor,
})

Implementation

const StripeProgressLoader({
  Key? key,
  this.height = 10.0,
  this.width,
  this.backgroundColor = const Color.fromRGBO(255, 240, 235, 1),
  this.stripeColor = const Color.fromRGBO(241, 90, 41, 1.0),
  this.animationDuration = const Duration(milliseconds: 1000),
  this.text,
  this.textColor,
}) : super(key: key);