getItems method

Future<ItemSearchResults?> getItems(
  1. String category,
  2. String text,
  3. String brand,
  4. String scrollId,
  5. String country,
)

Implementation

Future<ItemSearchResults?> getItems(String category, String text, String brand,
    String scrollId, String country) async {
  return await this
      ._searchService
      .getItems(category, text, brand, scrollId, country);
}