QueryParameter<T> constructor

const QueryParameter<T>(
  1. String name,
  2. T value
)

Creates a new QueryParameter with the given name and value.

Implementation

const QueryParameter(this.name, this.value);