AudioPlayerWidget constructor

const AudioPlayerWidget({
  1. Key? key,
  2. String? url,
  3. String? path,
  4. String? thumbnailUrl = "",
  5. required int mediaId,
  6. bool autoPlay = false,
})

Implementation

const AudioPlayerWidget({
  super.key,
  this.url,
  this.path,
  this.thumbnailUrl = "",
  required this.mediaId,
  this.autoPlay = false,
});