hasLabelAt method

bool hasLabelAt(
  1. int index
)

Returns true if the element at index has a label.

Implementation

bool hasLabelAt(int index) {
  assert(index >= 0 && index < length);
  return _labels[index] != null;
}