HeaderOperations constructor

const HeaderOperations({
  1. Map<String, String>? set,
  2. Map<String, String>? add,
  3. List<String>? remove,
})

The main constructor.

Implementation

const HeaderOperations({
  this.set,
  this.add,
  this.remove,
});