span property

Duration get span

Gets the span between the earliest and latest dates.

Implementation

Duration get span {
  final mm = minMaxHoraOrNull;
  if (mm == null) return Duration.zero;
  return mm.span;
}