getArtist method

String? getArtist()

Implementation

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