toH264TemporalAq method
Implementation
H264TemporalAq toH264TemporalAq() {
switch (this) {
case 'DISABLED':
return H264TemporalAq.disabled;
case 'ENABLED':
return H264TemporalAq.enabled;
}
throw Exception('$this is not known in enum H264TemporalAq');
}