getEncoder method

String? getEncoder()

Implementation

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