hasValueAt method

bool hasValueAt(
  1. int index
)

Implementation

bool hasValueAt(int index) {
  return index >= 0 && index < length && this[index] != null;
}