stopwatchInMonths property

int stopwatchInMonths

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

Implementation

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