dimensions property

List<int> dimensions
final

The number of elements at each level of the array, starting from the most significant outermost level.

For example [3, 2] would indicate a 2-dimensional array, where it is an array with 3 arrays, each containing 2 arrays.

Implementation

final List<int> dimensions;