notifyListenersOnPostFrame method

void notifyListenersOnPostFrame([
  1. bool notify = true,
  2. int? notifier
])

Implementation

void notifyListenersOnPostFrame([bool notify = true, int? notifier]) {
  WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
    notifyListeners(notify, notifier);
  });
}