tripEvents property

Stream<TripEvent> get tripEvents

Stream of trip lifecycle events.

Implementation

static Stream<TripEvent> get tripEvents {
  _tripEngine ??= TripEngine(store: _tripStore);
  return _tripEngine!.events;
}