turnRight method
Implementation
DriveOrientation turnRight() => switch (this) {
north => east,
west => north,
south => west,
east => south,
};
DriveOrientation turnRight() => switch (this) {
north => east,
west => north,
south => west,
east => south,
};