valuesAtIndices method

List<String> valuesAtIndices(
  1. Iterable<int> indices
)
inherited

The values stored at indices in this column.

Implementation

List<External> valuesAtIndices(Iterable<int> indices) =>
    [for (final i in indices) this[i]];