Parameter constructor

Parameter({
  1. String? key,
  2. Object? value,
})

Implementation

Parameter({
  this.key,
  this.value,
});