DirectionsResponse constructor

DirectionsResponse({
  1. ResponseStatus? status,
  2. String? errorMessage,
  3. List<GeocodedWaypoint>? geocodedWaypoints,
  4. List<Route>? routes,
})

Implementation

DirectionsResponse({
  super.status,
  super.errorMessage,
  this.geocodedWaypoints,
  this.routes,
});