Mp3Metadata constructor

Mp3Metadata({
  1. required String title,
  2. required String artist,
  3. required String album,
  4. required String date,
  5. required String genre,
})

Creates a new Mp3Metadata instance with the metadata fields

Implementation

Mp3Metadata({
  required this.title,
  required this.artist,
  required this.album,
  required this.date,
  required this.genre,
});