getPlaceCatByLang method

Future<List<PlaceCatModel>> getPlaceCatByLang(
  1. dynamic local
)

Implementation

Future<List<PlaceCatModel>> getPlaceCatByLang(local) async {
  NetworkResponse response = await _api.getPlaceCatByLang({'local': local});
  return response.data ?? [];
}