getByValue static method

Implementation

static ScooterInstructionCrossroadManeuverDirection getByValue(int value) {
  return ScooterInstructionCrossroadManeuverDirection.values.firstWhere((x) => x.rawValue == value);
}