call method

IndexStatus call([
  1. dynamic indexes
])
override

Implementation

IndexStatus call([indexes]) {
  if (indexes == null) {
    return IndexStatus.all(_table);
  }
  return IndexStatus(_table, indexes);
}