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