name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 1:
return 'BGR';
case 0:
return 'RGB';
case 3:
return 'VBGR';
case 2:
return 'VRGB';
}
return _value.toString();
}