Skip to content
Snippets Groups Projects
Select Git revision
  • 1f3741b4fe1d805eb05103ea5506876005ed072f
  • master default protected
  • 31-update-dependencies
  • 21-add-onlongpress-with-popup-on-parameters
  • 23-center-vertically-buttons
  • 30-highlight-bin-when-selecting-disabled-item
  • 1.0.7 protected
  • 1.0.6 protected
  • 1.0.5 protected
  • 1.0.4 protected
  • 1.0.3 protected
  • 1.0.2 protected
  • 1.0.0 protected
  • 0.9.1 protected
  • 0.9.0 protected
  • 0.8.4 protected
  • 0.8.3 protected
  • 0.8.2 protected
  • 0.8.1 protected
  • 0.8.0 protected
  • 0.7.0 protected
  • 0.6.1 protected
  • 0.6.0 protected
  • 0.5.0 protected
  • 0.4.0 protected
  • 0.3.0 protected
26 results

CHANGELOG.md

Blame
  • 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() + ')';
      }
    }