toAacRawFormat method
Implementation
AacRawFormat toAacRawFormat() {
switch (this) {
case 'LATM_LOAS':
return AacRawFormat.latmLoas;
case 'NONE':
return AacRawFormat.none;
}
throw Exception('$this is not known in enum AacRawFormat');
}