setStartDate method

void setStartDate(
  1. DateTime date
)

Implementation

void setStartDate(DateTime date) {
  emit(DateRangeUpdated(
    state.selection.copyWith(startDate: date),
  ));
}