CircularProgress constructor

const CircularProgress({
  1. bool visible = true,
  2. double size = 14,
  3. double margin = 0,
  4. double strokeWidth = 1.4,
  5. Color? color,
  6. double? value,
  7. Key? key,
})

Implementation

const CircularProgress({
  this.visible = true,
  this.size = 14,
  this.margin = 0,
  this.strokeWidth = 1.4,
  this.color,
  this.value,
  Key? key,
}) : super(key: key);