binaryValue property

List<int>? get binaryValue

Value of the HTTP header if it cannot be represented by UTF-8, stored as individual byte values (0..255).

Implementation

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

Implementation

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