startDate property

date get startDate

Gets the start date of the date range.

Implementation

date get startDate => _dates.min;
set startDate (date value)

Sets the start date of the date range.

Implementation

set startDate(date value) {
  _dates = [..._dates, value];
  _dates = [_dates.min, _dates.max];
}