CustomProgressIndicator.primary constructor

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

Constructs a CustomProgressIndicator with a primary style.

Implementation

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