toAacSpecification method
Implementation
AacSpecification toAacSpecification() {
switch (this) {
case 'MPEG2':
return AacSpecification.mpeg2;
case 'MPEG4':
return AacSpecification.mpeg4;
}
throw Exception('$this is not known in enum AacSpecification');
}