Select Git revision
cell_location.dart
-
Benoît Harrault authoredBenoît Harrault authored
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() + ')';
}
}