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