startChangeNotifications method

void startChangeNotifications()

Start change notification manually

Implementation

void startChangeNotifications() {
  if (manualNotificationControl) {
    if (_database.wilt.changeNotificationsPaused) {
      _database.wilt.restartChangeNotifications();
    } else {
      _database.startChangeNotifications();
    }
  }
}