Tile constructor

Tile(
  1. Point<int> position,
  2. List<Tile> neighbors, {
  3. Tile? parent,
  4. bool isBarrier = false,
})

Implementation

Tile(this.position, this.neighbors, {this.parent, this.isBarrier = false});