toNumberSelectionBehavior method
Implementation
NumberSelectionBehavior toNumberSelectionBehavior() {
switch (this) {
case 'PreferSticky':
return NumberSelectionBehavior.preferSticky;
case 'AvoidSticky':
return NumberSelectionBehavior.avoidSticky;
}
throw Exception('$this is not known in enum NumberSelectionBehavior');
}