getProductOfProFromSA method

Future<List<ProductModel>> getProductOfProFromSA(
  1. dynamic params
)

Implementation

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