NiceSpinner constructor

const NiceSpinner({
  1. Key? key,
  2. double size = 32,
  3. Color? color,
  4. String? label,
  5. double strokeWidth = 3,
})

Implementation

const NiceSpinner({
  super.key,
  this.size = 32,
  this.color,
  this.label,
  this.strokeWidth = 3,
});