The number of entire weeks spanned by this Duration.
For example, a duration of four weeks and three hours has four entire weeks.
const duration = Duration(days: 4, hours: 3); print(duration.inWeeks); // 1
int get inWeeks => inMicroseconds ~/ microsecondsPerWeek;