turnLeft method

DriveOrientation turnLeft()

Implementation

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