notify method

void notify()

Implementation

void notify() {
  for (var eve in _listner) {
    eve.onServerStatusChanged(isServerRunning);
  }
}