MiniMusicVisualizer constructor

const MiniMusicVisualizer({
  1. Key? key,
  2. Color? color,
  3. double? width,
  4. double? height,
  5. double radius = 0,
  6. bool animate = false,
  7. List<BoxShadow>? shadows,
  8. LinearGradient? linearGradient,
})

Implementation

const MiniMusicVisualizer({
  Key? key,
  this.color,
  this.width,
  this.height,
  this.radius = 0,
  this.animate = false,
  this.shadows,
  this.linearGradient,
}) : super(key: key);