zomato_dart 1.0.3 copy "zomato_dart: ^1.0.3" to clipboard
zomato_dart: ^1.0.3 copied to clipboard

A wrapper for the Zomato API that exposes dart objects. The various endpoints of the API can be accessed through convenience methods that return a Future.

example/example.dart

import 'package:zomato_dart/models/models.dart';
import 'package:zomato_dart/zomato_dart.dart';

/// Command Line Sample
/// Run with: $ dart example.dart {user-key}
void main(List<String> args) async {
  String userKey = args.first;
  print('Your Zomato user-key: $userKey');

  // var cats = await ZomatoDart(userKey).categories();
  // cats.forEach((p) => print("${p.name} ${p.id}"));

  // var cities = await ZomatoDart(userKey).cities(cityName: "Los Angeles", count: 5);
  // print(cities.length);

  // var collections = await ZomatoDart(userKey).collections();
  // print(collections.first.title);

  // // Be mindful of bad coordinates
  // var cuisines = await ZomatoDart(userKey).cuisines(latitude: "40", longitude: "-37");

  // // var cuisines = await ZomatoDart(userKey).cuisines(cityId:280);
  // print(cuisines.first.cuisineName);

  // var establishments = await ZomatoDart(userKey).establishments(cityId:280);
  // print(establishments.first.name);

  // var locations = await ZomatoDart(userKey).locations("Chelsea Market");
  // print(locations.first.title);

  // var locationdetail = await ZomatoDart(userKey).locationDetails(118273, "subzone");
  // print(locationdetail.bestRatedRestaurants.first.name);
  // print(locationdetail.bestRatedRestaurants.first.location.localityVerbose);
  // print(locationdetail.bestRatedRestaurants.first.photos.first.url);
  // print(locationdetail.bestRatedRestaurants.first.photos.first.user.name);
  // print(locationdetail.bestRatedRestaurants.first.toJson());

  // var geocode = await ZomatoDart(userKey).geocode("39.973609", "-75.128669");
  // print(geocode.link);
  // print(geocode.location.cityName);
  // print(geocode.popularity.subzone);
  // for (Restaurant res in geocode.nearbyRestaurants) {
  //   print(res.id);
  // }
  // print(geocode.nearbyRestaurants.first.toJson());

  // var restaurant = await ZomatoDart(userKey).restaurant("17016328");
  // print(restaurant.name);

  // var rq = await ZomatoDart(userKey).reviews("17016328");
  // // var rq = await ZomatoDart(userKey).reviews("17016328", start: 3);
  // print(rq.reviewsShown);
  // print(rq.userReviews.first.reviewText);

  var rs = await ZomatoDart(userKey).restaurantSearch(
    latitude: '39.973609',
    longitude: '-75.128669',
    categoryId: 7
  );

  print('Found: ${rs.resultsFound}');
  print('Shown: ${rs.resultsShown}');
  print('Start: ${rs.resultsStart}');
  print('Restaurant list length: ${rs.restaurants.length}'); 
  print(rs.restaurants.map((r) => r.toJson()));

  // var dms = await ZomatoDart(userKey).dailyMenus("16507624");
  // print(dms?.first?.dailyMenuId);
  // print(dms?.first?.dishes?.last?.name);
}
1
likes
30
pub points
0%
popularity

Publisher

unverified uploader

A wrapper for the Zomato API that exposes dart objects. The various endpoints of the API can be accessed through convenience methods that return a Future.

Repository (GitHub)
View/report issues

License

BSD-3-Clause (LICENSE)

Dependencies

http

More

Packages that depend on zomato_dart