equals method

bool equals(
  1. RowColumnIndex obj
)

Whether this object and a specified object are equal.

Implementation

bool equals(RowColumnIndex obj) {
  final RowColumnIndex other = obj;
  return other.rowIndex == rowIndex && other.columnIndex == columnIndex;
}