setLyric method

void setLyric(
  1. String? lyric
)

Implementation

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