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({
  Key? key,
  double value = 0.5,
  Color? backgroundColor,
  Animation<Color>? valueColor,
  this.direction = Axis.horizontal,
  this.borderWidth,
  this.borderColor,
  this.borderRadius,
  this.center,
}) : super(
        key: key,
        value: value,
        valueColor: valueColor,
        backgroundColor: backgroundColor,
      );