stopChangeNotify static method

Future<void> stopChangeNotify()

Disables asset change notifications.

Remember to remove all callback functions for changes.

Implementation

static Future<void> stopChangeNotify() async {
  if (await _notifyManager.stopChangeNotify()) {
    _notifyingOfChange = false;
  }
}