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