getLyric method

String? getLyric()

Implementation

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