setSelectionStart method

void setSelectionStart(
  1. DateTime? date
)

Sets the start date of the selection.

Implementation

void setSelectionStart(DateTime? date) {
  selectionStart = date;
  notifyListeners();
}