toSmoothGroupEventStopBehavior method
Implementation
SmoothGroupEventStopBehavior toSmoothGroupEventStopBehavior() {
switch (this) {
case 'NONE':
return SmoothGroupEventStopBehavior.none;
case 'SEND_EOS':
return SmoothGroupEventStopBehavior.sendEos;
}
throw Exception('$this is not known in enum SmoothGroupEventStopBehavior');
}