stopwatchInWeeks property

int stopwatchInWeeks

Returns the time that the stopwatch has recorded as elapsed in weeks.

Implementation

int get stopwatchInWeeks {
  var value = ((stopwatchValue).inDays / 7).round();
  return value;
}