name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 0:
return 'COVER_VERTICAL';
case 2:
return 'CROSS_DISSOLVE';
case 1:
return 'FLIP_HORIZONTAL';
case 3:
return 'PARTIAL_CURL';
}
return _value.toString();
}