celsiusToFahrenheit static method

double celsiusToFahrenheit(
  1. double celsius
)

Implementation

static double celsiusToFahrenheit(double celsius) {
  return celsius * 9 / 5 + 32;
}