name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 1:
return 'ALLOW';
case 3:
return 'ALLOW_WITHOUT_TRYING_APP_LINK';
case 0:
return 'CANCEL';
case 2:
return 'DOWNLOAD';
}
return _value.toString();
}