getIndexedAndIncrease static method

int getIndexedAndIncrease(
  1. String name
)

Implementation

static int getIndexedAndIncrease(String name) {
  final id = getIndexed(name);
  IndexedFile._indexed[name] = id + 1;
  return id;
}