LiquidProgressIndicator.circular constructor

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

Implementation

const LiquidProgressIndicator.circular(
    {super.key,
    super.value = 0.5,
    super.backgroundColor,
    super.color,
    super.valueColor,
    this.borderWidth = 0,
    this.borderColor,
    this.center,
    this.direction = Axis.vertical})
    : borderRadius = 0,
      shapePath = null,
      type = LiquidProgressIndicatorType.circular;