forSeller method
- String seller
Returns all offers where the given account is the seller. See Offers
Implementation
OffersRequestBuilder forSeller(String seller) {
seller = checkNotNull(seller, "seller cannot be null");
queryParameters.addAll({"seller": seller});
return this;
}