LocalDateRange constructor

LocalDateRange(
  1. LocalDate start,
  2. LocalDate end
)

Creates a date range for the given start and end DateTime.

Implementation

LocalDateRange(this.start, this.end) : assert(start <= end);