placeDescribeList function

Future<List<PlaceDescribeModel>> placeDescribeList()

Implementation

Future<List<PlaceDescribeModel>> placeDescribeList() async {
  appStore.setLoading(true);
  try {
    var res = PlaceDescribeResponse.fromMap(await (handleResponse(await buildHttpResponse(APIEndPoint.featureList, method: HttpMethod.GET))));
    appStore.setLoading(false);
    return res.data!.data.validate();
  } catch (e) {
    appStore.setLoading(false);
    throw errorSomethingWentWrong;
  }
}