SpinKitWaveSpinner constructor

const SpinKitWaveSpinner({
  1. Key? key,
  2. required Color color,
  3. Color trackColor = const Color(0x68757575),
  4. Color waveColor = const Color(0x68757575),
  5. double size = 50,
  6. Duration duration = const Duration(milliseconds: 3000),
  7. Curve curve = Curves.decelerate,
  8. Widget? child,
  9. AnimationController? controller,
})

Implementation

const SpinKitWaveSpinner({
  Key? key,
  required this.color,
  this.trackColor = const Color(0x68757575),
  this.waveColor = const Color(0x68757575),
  this.size = 50,
  this.duration = const Duration(milliseconds: 3000),
  this.curve = Curves.decelerate,
  this.child,
  this.controller,
}) : super(key: key);