copyWith method
Implementation
AudioMetadata copyWith({
String? artist,
String? title,
String? album,
String? genre,
String? comment,
String? date,
}) {
return AudioMetadata(
artist: artist ?? this.artist,
title: title ?? this.title,
album: album ?? this.album,
genre: genre ?? this.genre,
comment: comment ?? this.comment,
date: date ?? this.date,
);
}