onStartPointFocusChanged method

void onStartPointFocusChanged(
  1. bool hasFocus
)

Notifies the controller when the start-point field focus changes.

Implementation

void onStartPointFocusChanged(bool hasFocus) {
  _isStartPointFocused = hasFocus;
  if (!hasFocus) {
    _isChangingStartingPoint = false;
  }
  _notify();
}