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