getTerms property

String getTerms

The legal terms and conditions of the Offer.

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

To set the terms:

  • set the property directly with the markdown text through the terms method.
        offer.terms = "# Legal Terms and Conditions\n\nBy using this product, you agree to the following terms and conditions."
  • Warning: The terms property must be set before calling the add() method, otherwise it will throw a StateError.

Implementation

String get getTerms => _terms!;