CookieValue constructor

const CookieValue(
  1. String cookie, {
  2. dynamic match,
  3. dynamic defaultValue,
  4. bool required = true,
})

Implementation

const CookieValue(String cookie, {match, defaultValue, bool required = true})
    : super(
          cookie: cookie,
          match: match,
          defaultValue: defaultValue,
          required: required);