DirectionsResponse constructor

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

Implementation

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