getIndexed static method

int getIndexed(
  1. String name
)

Implementation

static int getIndexed(String name) {
  return IndexedFile._indexed[name] != null && IndexedFile._indexed[name]! > 0
      ? IndexedFile._indexed[name]!
      : 0;
}