Param constructor

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

Implementation

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