CustomProgressIndicator.small constructor

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

Constructs a CustomProgressIndicator with a small style.

Implementation

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