getBoolean method

bool getBoolean(
  1. int row,
  2. int column
)

Implementation

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