toReservationCodec method
Implementation
ReservationCodec toReservationCodec() {
switch (this) {
case 'MPEG2':
return ReservationCodec.mpeg2;
case 'AVC':
return ReservationCodec.avc;
case 'HEVC':
return ReservationCodec.hevc;
case 'AUDIO':
return ReservationCodec.audio;
case 'LINK':
return ReservationCodec.link;
}
throw Exception('$this is not known in enum ReservationCodec');
}