name method
Gets the name of the value.
Implementation
String name() {
switch (_value) {
case 'child-frame':
return 'CHILD_FRAME';
case 'top-frame':
return 'TOP_FRAME';
}
return _value.toString();
}
Gets the name of the value.
String name() {
switch (_value) {
case 'child-frame':
return 'CHILD_FRAME';
case 'top-frame':
return 'TOP_FRAME';
}
return _value.toString();
}