toMilesPerHour static method

double toMilesPerHour(
  1. double value
)

Converts the supplied Metres Per Second value to Miles Per Hour

Implementation

static double toMilesPerHour(double value) => value * 2.23694;