getTitle method

String? getTitle()

Implementation

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