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