value property

int value

Implementation

int get value {
  switch (this) {
    case TotalBodyExerciseName.burpee:
      return 0;
    case TotalBodyExerciseName.weightedBurpee:
      return 1;
    case TotalBodyExerciseName.burpeeBoxJump:
      return 2;
    case TotalBodyExerciseName.weightedBurpeeBoxJump:
      return 3;
    case TotalBodyExerciseName.highPullBurpee:
      return 4;
    case TotalBodyExerciseName.manMakers:
      return 5;
    case TotalBodyExerciseName.oneArmBurpee:
      return 6;
    case TotalBodyExerciseName.squatThrusts:
      return 7;
    case TotalBodyExerciseName.weightedSquatThrusts:
      return 8;
    case TotalBodyExerciseName.squatPlankPushUp:
      return 9;
    case TotalBodyExerciseName.weightedSquatPlankPushUp:
      return 10;
    case TotalBodyExerciseName.standingTRotationBalance:
      return 11;
    case TotalBodyExerciseName.weightedStandingTRotationBalance:
      return 12;
  }
}