startChangeNotify static method

Future<void> startChangeNotify()

Enables asset change notifications.

Make sure you've added at least one callback function for changes.

Implementation

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