name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'OVER_SCROLL_ALWAYS';
case 1:
return 'OVER_SCROLL_IF_CONTENT_SCROLLS';
case 2:
return 'OVER_SCROLL_NEVER';
}
return _value.toString();
}