toDays static method

num toDays(
  1. num date
)

Implementation

static num toDays(num date) {
  return toHours(date) / 24;
}