Parameter<T> constructor

Parameter<T>(
  1. String name,
  2. String textValue,
  3. T value
)

Creates a new parameter

Implementation

Parameter(this.name, this.textValue, this.value);