AudioInfo constructor

AudioInfo({
  1. String? audioUrl,
  2. String? title,
  3. String? artist,
  4. String? picture,
})

Implementation

AudioInfo({
  this.audioUrl,
  this.title,
  this.artist,
  this.picture,
});