dispatchLastEvent method

  1. @override
void dispatchLastEvent()
override

Implementation

@override
void dispatchLastEvent() {
  if (_lastPreviousEvent != null) {
    dispatch(_lastPreviousEvent!);
  } else {
    super.dispatchLastEvent();
  }
}