toForwardValues method
Implementation
ForwardValues toForwardValues() {
switch (this) {
case 'none':
return ForwardValues.none;
case 'allow-list':
return ForwardValues.allowList;
case 'all':
return ForwardValues.all;
}
throw Exception('$this is not known in enum ForwardValues');
}