toHours static method

double toHours(
  1. double value
)

Converts the supplied Seconds value to Hours

Implementation

static double toHours(double value) => value / 3600.0;