header method

VinculumConfigBuilder header(
  1. String key,
  2. String value
)

Adds a custom header

Implementation

VinculumConfigBuilder header(String key, String value) {
  _headers[key] = value;
  return this;
}