OptimizationApiResponse constructor

OptimizationApiResponse({
  1. String? code,
  2. String? uuid,
  3. List<NavigationOptimizedWaypoint>? waypoints,
  4. List<NavigationRoute>? trips,
  5. Error? error,
})

Implementation

OptimizationApiResponse({
  this.code,
  this.uuid,
  this.waypoints,
  this.trips,
  this.error,
});