notify method

void notify()

notify to listeners and rebuild the widgets

Implementation

void notify() {
  if (!disposed) {
    notifyListeners(
      const SimpleNotifierEmptyData(),
    );
  }
}