toMilesPerHour static method

double toMilesPerHour(
  1. double value
)

Converts the supplied Feet Per Second value to Miles Per Hour

Implementation

static double toMilesPerHour(double value) => value / 1.46667;