toInputSourceType method
Implementation
InputSourceType toInputSourceType() {
switch (this) {
case 'STATIC':
return InputSourceType.static;
case 'DYNAMIC':
return InputSourceType.dynamic;
}
throw Exception('$this is not known in enum InputSourceType');
}