timeSpan property

Duration? get timeSpan

Duration covered by logs

Implementation

Duration? get timeSpan {
  if (earliestLog == null || latestLog == null) return null;
  return latestLog!.difference(earliestLog!);
}