ColorSonar constructor

ColorSonar({
  1. double contentAreaRadius = 24.0,
  2. double waveFall = 15.0,
  3. WaveMotion waveMotion = WaveMotion.synced,
  4. Curve waveMotionEffect = Curves.easeOut,
  5. Duration duration = const Duration(seconds: 1),
  6. bool wavesDisabled = false,
  7. Color contentAreaColor = Colors.white,
  8. Color innerWaveColor = const Color(0xFF696969),
  9. Color middleWaveColor = const Color(0xFFA9A9A9),
  10. Color outerWaveColor = const Color(0xFFDCDCDC),
  11. required Widget child,
})

Implementation

ColorSonar({
  this.contentAreaRadius = 24.0,
  this.waveFall = 15.0,
  this.waveMotion = WaveMotion.synced,
  this.waveMotionEffect = Curves.easeOut,
  this.duration = const Duration(seconds: 1),
  this.wavesDisabled = false,
  this.contentAreaColor = Colors.white,
  this.innerWaveColor = const Color(0xFF696969),
  this.middleWaveColor = const Color(0xFFA9A9A9),
  this.outerWaveColor = const Color(0xFFDCDCDC),
  required this.child,
});