turnRight method

DriveOrientation turnRight()

Implementation

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