Copyright constructor

Copyright({
  1. String? url,
  2. String? value,
})

Constructor for the Copyright class.

The constructor initializes a Copyright object with optional named parameters:

  • url: The URL associated with the copyright.
  • value: The value of the copyright.

Both parameters are optional and can be set to null if not provided.

Implementation

Copyright({
  this.url,
  this.value,
});