description method
Sets the _description
of this Offer.
Additionally, this method returns the Offer object to enable convenient chaining of method calls during offer initialization.
Implementation
Offer description(String description) {
_description = description;
return this;
}