geocode abstract method

  1. @GET.new("/maps/places/get-place/{placeId}")
Future<LatLng> geocode(
  1. @Path.new("placeId") String placeId, {
  2. @Query.new("lang") String? lang,
})

Implementation

@GET("/maps/places/get-place/{placeId}")
Future<LatLng> geocode(@Path("placeId") String placeId,
    {@Query("lang") String? lang});