startDate property
Gets the start date of the date range.
Implementation
date get startDate => _dates.min;
Sets the start date of the date range.
Implementation
set startDate(date value) {
_dates = [..._dates, value];
_dates = [_dates.min, _dates.max];
}