Param constructor

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

Implementation

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