getArtist method
Implementation
String? getArtist() {
return switch (_format) {
Format.mp3 => _mp3file!.getArtist(),
Format.flac => _flacFile!.getArtist(),
_ => null,
};
}
String? getArtist() {
return switch (_format) {
Format.mp3 => _mp3file!.getArtist(),
Format.flac => _flacFile!.getArtist(),
_ => null,
};
}