name method

String name()

Gets the name of the value.

Implementation

String name() {
  switch (_value) {
    case 16777216:
      return 'SCROLLBARS_INSIDE_INSET';
    case 0:
      return 'SCROLLBARS_INSIDE_OVERLAY';
    case 50331648:
      return 'SCROLLBARS_OUTSIDE_INSET';
    case 33554432:
      return 'SCROLLBARS_OUTSIDE_OVERLAY';
  }
  return _value.toString();
}