toSmoothGroupStreamManifestBehavior method
Implementation
SmoothGroupStreamManifestBehavior toSmoothGroupStreamManifestBehavior() {
switch (this) {
case 'DO_NOT_SEND':
return SmoothGroupStreamManifestBehavior.doNotSend;
case 'SEND':
return SmoothGroupStreamManifestBehavior.send;
}
throw Exception(
'$this is not known in enum SmoothGroupStreamManifestBehavior');
}