get method

Implementation

Future<ResponseListDTO<StockListDTO>> get(
    {ProductPriceAndRatingQuery? query}) async {
  return await _repository!.get(
    query: query,
  );
}