getInt method

int getInt(
  1. int row,
  2. int column
)

Implementation

int getInt(int row, int column) {
  return int.parse(getValueAsString(row, column));
}