noFolding method

  1. @override
void noFolding(
  1. String? name
)
override

Disables folding for the header named name when sending the HTTP header.

By default, multiple header values are folded into a single header line by separating the values with commas.

The 'set-cookie' header has folding disabled by default.

Implementation

@override
void noFolding(String? name) => super.noSuchMethod(
      Invocation.method(
        #noFolding,
        [name],
      ),
      returnValueForMissingStub: null,
    );