Param constructor

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

Default constructor for the Param class

Implementation

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