Input$MarketplaceSearchProductsInput constructor

Input$MarketplaceSearchProductsInput({
  1. String? page,
  2. int? page_size,
  3. String? store_id,
  4. String? term,
})

Implementation

factory Input$MarketplaceSearchProductsInput({
  String? page,
  int? page_size,
  String? store_id,
  String? term,
}) =>
    Input$MarketplaceSearchProductsInput._({
      if (page != null) r'page': page,
      if (page_size != null) r'page_size': page_size,
      if (store_id != null) r'store_id': store_id,
      if (term != null) r'term': term,
    });