Parameter constructor

Parameter({
  1. String? parameterKey,
  2. String? parameterValue,
  3. String? resolvedValue,
  4. bool? usePreviousValue,
})

Implementation

Parameter({
  this.parameterKey,
  this.parameterValue,
  this.resolvedValue,
  this.usePreviousValue,
});