Spinner constructor

const Spinner({
  1. Key? key,
  2. double? size,
  3. double thickness = 4,
  4. Color? color,
  5. double? padding = 10,
  6. bool centered = true,
  7. double? value,
})

Implementation

const Spinner({
  super.key,
  this.size,
  this.thickness = 4,
  this.color,
  this.padding = 10,
  this.centered = true,
  this.value,
});