ModifyHeaderInfo constructor
ModifyHeaderInfo({
- required String header,
- required HeaderOperation operation,
- String? value,
Implementation
ModifyHeaderInfo({
/// The name of the header to be modified.
required String header,
/// The operation to be performed on a header.
required HeaderOperation operation,
/// The new value for the header. Must be specified for `append`
/// and `set` operations.
String? value,
}) : _wrapped = $js.ModifyHeaderInfo(
header: header,
operation: operation.toJS,
value: value,
);