Select Git revision
CHANGELOG.md
-
Benoît Harrault authoredBenoît Harrault authored
To find the state of this project's repository at the time of any of these versions, check out the tags.
cell_location.dart 339 B
class CellLocation {
final int col;
final int row;
CellLocation({
required this.col,
required this.row,
});
factory CellLocation.go(int row, int col) {
return new CellLocation(col: col, row: row);
}
String toString() {
return 'CellLocation(col: ' + col.toString() + ', row: ' + row.toString() + ')';
}
}