toPassthroughBehavior method
Implementation
PassthroughBehavior toPassthroughBehavior() {
switch (this) {
case 'WHEN_NO_MATCH':
return PassthroughBehavior.whenNoMatch;
case 'NEVER':
return PassthroughBehavior.never;
case 'WHEN_NO_TEMPLATES':
return PassthroughBehavior.whenNoTemplates;
}
throw Exception('$this is not known in enum PassthroughBehavior');
}