CircularProgress.small constructor

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

Implementation

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