v2GetProductCategories method

Future<List<ProductCategory>> v2GetProductCategories()

Implementation

Future<List<ProductCategory>> v2GetProductCategories() async {
  NetworkResponse response = await _api.v2GetProductCategories({"": ""});
  return response.data ?? [];
}