getServiceCatForIndustry method

Future<List<AuthIndustry>> getServiceCatForIndustry([
  1. dynamic params
])

Implementation

Future<List<AuthIndustry>> getServiceCatForIndustry([params]) async {
  NetworkResponse response = await _api.getServiceCatForIndustry(params);
  return response.data ?? [];
}