values property

List<String>? get values

If specified, match this rule if the header's value contains at least one element in this list.

Implementation

List<String>? get values =>
    _wrapped.values?.toDart.cast<String>().map((e) => e).toList();
set values (List<String>? v)

Implementation

set values(List<String>? v) {
  _wrapped.values = v?.toJSArray((e) => e);
}