toAacProfile method

AacProfile toAacProfile()

Implementation

AacProfile toAacProfile() {
  switch (this) {
    case 'HEV1':
      return AacProfile.hev1;
    case 'HEV2':
      return AacProfile.hev2;
    case 'LC':
      return AacProfile.lc;
  }
  throw Exception('$this is not known in enum AacProfile');
}