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