fromIndex static method

QL1100 fromIndex(
  1. int index
)

Implementation

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

  return _values[index];
}