LiquidCustomProgressIndicator constructor

LiquidCustomProgressIndicator({
  1. Key? key,
  2. double value = 0.5,
  3. Color? backgroundColor,
  4. Animation<Color>? valueColor,
  5. Widget? center,
  6. required Axis direction,
  7. required Path shapePath,
})

Implementation

LiquidCustomProgressIndicator({
  Key? key,
  double value = 0.5,
  Color? backgroundColor,
  Animation<Color>? valueColor,
  this.center,
  required this.direction,
  required this.shapePath,
}) : super(
        key: key,
        value: value,
        backgroundColor: backgroundColor,
        valueColor: valueColor,
      );