AudioMetadata constructor

const AudioMetadata({
  1. String? id,
  2. String? title,
  3. String? album,
  4. String? artist,
  5. String? genre,
  6. double? durationSeconds,
  7. Uint8List? artBytes,
})

Implementation

const AudioMetadata({
  this.id,
  this.title,
  this.album,
  this.artist,
  this.genre,
  this.durationSeconds,
  this.artBytes,
});