name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 8:
return 'AV_STREAMING';
case 3:
return 'BACKGROUND';
case 11:
return 'CALL_SIGNALING';
case 0:
return 'DEFAULT';
case 9:
return 'RESPONSIVE_AV';
case 6:
return 'RESPONSIVE_DATA';
case 2:
return 'VIDEO';
case 4:
return 'VOICE';
}
return _value.toString();
}