LiquidProgressIndicator.custom constructor

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

Implementation

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