notifyListeners method

dynamic notifyListeners(
  1. Payload data
)

Implementation

notifyListeners(Payload data)
{
  if (_listeners != null) {
    for (var listener in _listeners!) {
      listener.onGpsData(payload: data);
    }
  }
}