notifySafe method

dynamic notifySafe()

Implementation

notifySafe() {
  if (_mounted) {
    Future.delayed(Duration(seconds: 0), () => notifyListeners());
  }
}