MapmyIndiaNearby constructor

MapmyIndiaNearby({
  1. required String keyword,
  2. LatLng? location,
  3. String? eLoc,
  4. int? page,
  5. int? radius,
  6. String? pod,
  7. String? bounds,
  8. String? filter,
  9. bool? explain,
  10. bool? richData,
  11. String? searchBy,
  12. String? sortBy,
  13. String? userName,
})

Implementation

MapmyIndiaNearby(
    {required this.keyword,
    this.location,
    this.eLoc,
    this.page,
    this.radius,
    this.pod,
    this.bounds,
    this.filter,
    this.explain,
    this.richData,
    this.searchBy,
    this.sortBy,
    this.userName})
    : assert(location != null || eLoc != null);