name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 'LONG_EDGE':
      return 'LONG_EDGE';
    case 'NONE':
      return 'NONE';
    case 'SHORT_EDGE':
      return 'SHORT_EDGE';
  }
  return _value.toString();
}