CustomProgressIndicator constructor

const CustomProgressIndicator({
  1. Key? key,
  2. double? value,
})

Implementation

const CustomProgressIndicator({super.key, this.value})
  : size = 32,
    padding = const EdgeInsets.all(6),
    blur = true,
    backgroundColor = null,
    valueColor = null,
    primary = false,
    strokeWidth = 2.0;