googlePlaceSeachPlaceByText method

Future<List<SeachPlaceResultModel>> googlePlaceSeachPlaceByText(
  1. String keyword, [
  2. dynamic types
])

Implementation

Future<List<SeachPlaceResultModel>> googlePlaceSeachPlaceByText(
    String keyword,
    [types]) async {
  NetworkResponse response =
      await _api.googlePlaceSeachPlaceByText(keyword, types);
  return response.data ?? [];
}