Funding constructor

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

Constructor for creating a Funding object.

The constructor initializes a Funding object with optional named parameters:

  • url: The URL associated with the funding information.
  • value: The value of the funding information.

Implementation

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