class Rover { int x; int y; String direction; Rover({required this.x, required this.y, required this.direction}); }