AudioImage constructor

const AudioImage({
  1. Key? key,
  2. required String audioPicture,
  3. double width = 700,
  4. double height = 200,
  5. Alignment alignment = Alignment.center,
  6. BoxFit fit = BoxFit.contain,
})

Implementation

const AudioImage({
  super.key,
  required this.audioPicture,
  this.width = 700,
  this.height = 200,
  this.alignment = Alignment.center,
  this.fit = BoxFit.contain,
});