terms method

Offer terms(
  1. String terms
)

Sets the file that contains legal terms and conditions of the Offer.

Use this method to specify detailed legal terms and conditions for the usage of the TitleRecord associated with this Offer. It supports basic markdown formatting and hyperlinks.

Additionally, this method returns the Offer object to enable convenient chaining of method calls during offer initialization.

Implementation

Offer terms(String terms) {
  _terms = terms;
  return this;
}