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