DateRange copyWith({ int? startDate, int? endDate, }) => DateRange( startDate: startDate ?? this.startDate, endDate: endDate ?? this.endDate, );