SimpleSpinner constructor

const SimpleSpinner({
  1. Key? key,
  2. required Color colorBackground,
  3. required Color colorSpin,
  4. double? height,
  5. double? width,
})

Implementation

const SimpleSpinner({super.key,
  required this.colorBackground,
  required this.colorSpin,
  this.height,
  this.width
});