toAacInputType method

AacInputType toAacInputType()

Implementation

AacInputType toAacInputType() {
  switch (this) {
    case 'BROADCASTER_MIXED_AD':
      return AacInputType.broadcasterMixedAd;
    case 'NORMAL':
      return AacInputType.normal;
  }
  throw Exception('$this is not known in enum AacInputType');
}