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