LiquidProgressIndicator constructor

const LiquidProgressIndicator({
  1. Key? key,
  2. double value = 0.5,
  3. Color? backgroundColor,
  4. Animation<Color>? valueColor,
  5. Axis direction = Axis.horizontal,
  6. double? borderWidth,
  7. Color? borderColor,
  8. double? borderRadius,
  9. Widget? center,
})

Implementation

const LiquidProgressIndicator({
  super.key,
  double super.value = 0.5,
  super.backgroundColor,
  Animation<Color>? super.valueColor,
  this.direction = Axis.horizontal,
  this.borderWidth,
  this.borderColor,
  this.borderRadius,
  this.center,
});