Param constructor

Param({
  1. String? name,
  2. String? value,
})

Constructor for creating a Param object.

The constructor initializes a Param object with optional named parameters:

  • name: The name of the parameter.
  • value: The value of the parameter.

Implementation

Param({
  this.name,
  this.value,
});