name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 0:
      return 'BEST';
    case 1:
      return 'RESPONSIVE';
  }
  return _value.toString();
}