CustomProgressIndicator.big constructor

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

Constructs a CustomProgressIndicator with a big style.

Implementation

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