DirectionsResponse constructor

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

Implementation

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