SoundWidget constructor

const SoundWidget({
  1. Key? key,
  2. required SoundController soundController,
  3. Color backgroundColor = Colors.white,
})

Implementation

const SoundWidget({
  Key? key,
  required this.soundController,
  this.backgroundColor = Colors.white,
}) : super(key: key);