headers method

VinculumConfigBuilder headers(
  1. Map<String, String> headers
)

Adds multiple custom headers

Implementation

VinculumConfigBuilder headers(Map<String, String> headers) {
  _headers.addAll(headers);
  return this;
}