Parameter constructor

const Parameter({
  1. String? cookie,
  2. String? query,
  3. String? header,
  4. String? session,
  5. dynamic match,
  6. dynamic defaultValue,
  7. bool required = true,
})

Implementation

const Parameter(
    {this.cookie,
    this.query,
    this.header,
    this.session,
    this.match,
    this.defaultValue,
    this.required = true});