getTrack method

String? getTrack()

Implementation

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