toInputSourceEndBehavior method
Implementation
InputSourceEndBehavior toInputSourceEndBehavior() {
switch (this) {
case 'CONTINUE':
return InputSourceEndBehavior.$continue;
case 'LOOP':
return InputSourceEndBehavior.loop;
}
throw Exception('$this is not known in enum InputSourceEndBehavior');
}