removeOffer method

TikiSdk removeOffer(
  1. String offerId
)

Removes an Offer object from the offers dictionary, using its ID as the key.

The Offer object with the specified ID is removed from the offers dictionary. If no offer with the specified ID is found in the dictionary, this method has no effect.

Implementation

TikiSdk removeOffer(String offerId) {
  _offers.remove(offerId);
  return TikiSdk.instance;
}