daysToWeeks static method

int daysToWeeks(
  1. int days
)

Implementation

static int daysToWeeks(final int days) {
  return days ~/ WEEK;
}