fahrenheitToCelsius static method

double fahrenheitToCelsius(
  1. double temp
)

Implementation

static double fahrenheitToCelsius(double temp) {
  return (temp - 32) * 5 / 9;
}