Param constructor
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,
});