toDays static method

double toDays(
  1. double value
)

Converts the supplied Weeks value to Days

Implementation

static double toDays(double value) => value * 7.0;