WSpinner constructor

const WSpinner({
  1. Key? key,
  2. required Widget child,
  3. double rpm = 30.0,
  4. bool clockwise = true,
})

Implementation

const WSpinner({
  super.key,
  required this.child,
  this.rpm = 30.0,
  this.clockwise = true,
});