LiquidProgressWidget constructor

const LiquidProgressWidget({
  1. Key? key,
  2. required double progress,
  3. required List<Color> colors,
  4. required Color backgroundColor,
  5. required double borderWidth,
  6. required Color borderColor,
  7. required double radius,
  8. required Axis direction,
  9. String? text,
  10. TextStyle? textStyle,
  11. required bool textInside,
})

Implementation

const LiquidProgressWidget({
  Key? key,
  required this.progress,
  required this.colors,
  required this.backgroundColor,
  required this.borderWidth,
  required this.borderColor,
  required this.radius,
  required this.direction,
  this.text,
  this.textStyle,
  required this.textInside,
}) : super(key: key);