toDays static method

double toDays(
  1. double value
)

Converts the supplied Hours value to Days

Implementation

static double toDays(double value) => value / 24.0;