onCarSaved method

void onCarSaved(
  1. OnCarSavedCallback callback
)

Triggered when the user's car location is saved.

A car represents the FMC feature entity that stores where the user has parked. It is persisted locally on the host as a personal POI.

Implementation

void onCarSaved(OnCarSavedCallback callback) {
  _onCarSavedCallback = callback;
}