toH265Tier method

H265Tier toH265Tier()

Implementation

H265Tier toH265Tier() {
  switch (this) {
    case 'HIGH':
      return H265Tier.high;
    case 'MAIN':
      return H265Tier.main;
  }
  throw Exception('$this is not known in enum H265Tier');
}