FakeLinearProgressIndicator constructor

FakeLinearProgressIndicator({
  1. Key? key,
  2. required String label,
  3. required Duration duration,
  4. double? width,
  5. EdgeInsets? margin,
  6. TextStyle? style,
  7. Animation<Color>? valueColor,
  8. Color? backgroundColor,
})

Implementation

FakeLinearProgressIndicator({
  Key? key,
  required this.label,
  required this.duration,
  this.width,
  this.margin,
  this.style,
  this.valueColor,
  this.backgroundColor
}) : super(key: key);