DirectionsApiResponse constructor

DirectionsApiResponse({
  1. String? code,
  2. String? uuid,
  3. List<NavigationWaypoint>? waypoints,
  4. List<NavigationRoute>? routes,
  5. Error? error,
})

Implementation

DirectionsApiResponse({
  this.code,
  this.uuid,
  this.waypoints,
  this.routes,
  this.error,
});