dimTwo method

List dimTwo()

This method returns a dynamic list of the tuple's second dimension.

Implementation

List<dynamic> dimTwo() {
  List<dynamic> values = [];
  for (int i = 0; i < this.data.length; i++) {
    values.add(this.data[i][1]);
  }
  return values;
}