CustomProgressIndicator.bold constructor

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

Constructs a CustomProgressIndicator with a small style.

Implementation

const CustomProgressIndicator.bold({super.key, this.value})
  : size = 18,
    padding = const EdgeInsets.all(0),
    blur = false,
    backgroundColor = null,
    valueColor = null,
    primary = false,
    onPrimary = true,
    strokeWidth = 3;