fromIndex static method

QL1115 fromIndex(
  1. int index
)

Implementation

static QL1115 fromIndex (int index) {
  if (index < 0 ||index >= _values.length ) {
    return UNSUPPORT;
  }

  return _values[index];
}