toAacSpec method

AacSpec toAacSpec()

Implementation

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