emitLocation method

void emitLocation(
  1. Location location
)

Emits a mock location to all location listeners.

Implementation

void emitLocation(Location location) {
  _storedLocations.add(location);
  _locationController.add(location);
  _emitEvent(EventType.location, location);
}