FFtView constructor

const FFtView({
  1. Key? key,
  2. required double width,
  3. required MediaAudioPlayer controller,
  4. required double indicatorWidth,
  5. double spaceWidth = 0,
  6. double indicatorHeight = 40,
  7. Color color = Colors.black,
})

Implementation

const FFtView({
  super.key,
  required this.width,
  required this.controller,
  required this.indicatorWidth,
  this.spaceWidth = 0,
  this.indicatorHeight = 40,
  this.color = Colors.black,
});