ContentLink constructor

ContentLink({
  1. String? href,
  2. String? value,
})

Constructor for creating a ContentLink object.

The constructor initializes a ContentLink object with optional named parameters:

  • href: The URL of the content link.
  • value: The value of the content link.

Implementation

ContentLink({
  this.href,
  this.value,
});